You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the camunda-connector the app_message_name is used to map the message to the correlating process step and parse the payload back into the process.
Problem here is that the attribute is not unique with genericEvent in the element templates which can lead to a error when a process runs two integrations calls in parallel. In real use cases that is very unrealistic but it would be a good idea to fix that anyway.
It may also make sense to use app_type_name and app_integration_name (see #958) instead of app_message_name for the resolution.
Possible solutions
make app_message_name unique
use app_type_name and app_integration_name
Acceptance criteria
The mapping from a integration response to a process step is always unique
The text was updated successfully, but these errors were encountered:
Die Integrationen werden in einer Call Activity aufgerufen. Da wird dann ein eigener Subprozess erstellt für das Streaming Template, an den auch die Message der Integration korreliert wird. Also müsste der Prozess schon unique sein.
In the camunda-connector the
app_message_name
is used to map the message to the correlating process step and parse the payload back into the process.Problem here is that the attribute is not unique with
genericEvent
in the element templates which can lead to a error when a process runs two integrations calls in parallel. In real use cases that is very unrealistic but it would be a good idea to fix that anyway.It may also make sense to use
app_type_name
andapp_integration_name
(see #958) instead ofapp_message_name
for the resolution.Possible solutions
app_message_name
uniqueapp_type_name
andapp_integration_name
Acceptance criteria
The text was updated successfully, but these errors were encountered: