Hi Camunda Team,
I built a springboot project with springboot (2.5.2) , springcloud(2020.0.2) and spring-zeebe-starter (1.2.7) and my zeebe cluster is self-managed and version is 8.5.1.
Here is my properties of zeebe:
zeebe.client.broker.gateway-address=10.12.12.12:26500
zeebe.client.job.poll-interval=1m
zeebe.client.security.plaintext=true
Here is my code snippet:
@ZeebeWorker(type = "ab-done-worker")
public void completeNotice(final JobClient client, final ActivatedJob job) {
// do something
...
client.newCompleteCommand(job.getKey())
.send()
.join();
}
I can create a process instance by io.camunda.zeebe.spring.client.ZeebeClientLifecycle that means the application can communicate with the zeebe server. But the method completeNotice is not invoked when the flow node which type is ab-done-worker is arrived.