Camunda 8 worker issue

Hi,
I’m currently working on camunda 8 Saas.
I have this type of project structure.
image
Here bpm-process-c8 contains all the worker and connection to zeebe is also made in this project only.
I’m able to start process from here using ZeebeClient but what ever worker I have written is not getting triggered.

public String startCamundaProcess(){
		final ProcessInstanceEvent processInstanceEvent= client.newCreateInstanceCommand()
				.bpmnProcessId("test")
				.latestVersion()
				.send()
				.join();
		return processInstanceEvent.toString();
	}
This code is working fine and process is getting started.

But when I’m running this project separately it is working fine and all the workers also getting triggered.
I’m not able get it exactly where I’m going wrong.

Zeebe version -8.5.0
Java - 17
Springboot-3.2.5

ThankYou

Hi @dandotiya9722 - can you share your worker implementation, and how you’re creating the worker instances?

1 Like

@nathan.loding thanks for the reply but I was able to solve the issue now. The error I was getting is due to Springboot versions.

2 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.