Job Executor and Deployment Awareness + User Task Listeners issues

This is a sample project to illustrate the problem that I am having:

https://github.com/billbarni/camunda-deploymentaware-jobexecutor-bug

I can’t complete a UserTask if it has a Listener attached to it, because the WebApp/Rest Engine tries to execute it locally, even with the Job Executor disabled.

Why is that? Am I missing any config or doing anything wrong?

The Readme file in the repo describes how to reproduce the problem.

Hi @mbarni,

the listener invocation is part of the activity execution: Transactions in Processes | docs.camunda.org.

You can either

  • move the implementation into the server where the webapp is running
  • use explicit service tasks to call the code
  • call the listener as an execution listener on take events of the sequence flows

Hope this helps, Ingo