Weird issue with worker ( external client)

hi all

i have a weird issue where i have writter worker code ( external client) and using rest to call
so each task is divided into multiple workers/topic but in one of the worker task is lying and its not invoking the worker not sure how to debug this issue
due to compliance issue i cant publish the code or the process but what are the ways to debug to fix if a worker fails to invoke ??

vish

Hi @vishucamunda,

you can enable logging in the worker. Adding the dependency

     <dependency>
       <groupId>ch.qos.logback</groupId>
       <artifactId>logback-classic</artifactId>
       <version>1.2.3</version>
     </dependency>

to the pom you can configure the logging behavoir with logback. The client uses org.camunda.bpm.client as category.

Adding the jcl-over-slf4j dependency as well let you inspect the http traffic sent to the engine.

Hope this helps, Ingo