Hi
I have two spring boot starter applications each deploying a Camunda instance, using a shared database.
The processes are very basic the first one (order-import) sends a message using Kafka and the second one (prescription-flow) receives that message.
All good until I get the following error in the console of project number 2.
Caused by: org.camunda.bpm.engine.impl.javax.el.PropertyNotFoundException: Cannot resolve identifier 'processDocumentsFolder'.
processDocumentsFolder is defined in process number 1. Why is the error appearing in the console of project number 2?
When switching to each project using its own database then everything works fine.
I attached the process for reference:
prescription-flow.bpmn (2.3 KB) order-import.bpmn (3.1 KB)
Thank you