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
{{ message }}
This repository was archived by the owner on Sep 6, 2023. It is now read-only.
The variables which are passed to the process are included in the analysis. However, it is possible that a process is started twice within a project. In this case, the variables are currently merged (union of variable sets).
The correct way would be to run two seperate analyses, one per entry point.
To implement this extension, the analysis must be conducted per entry point and the frontend must be changed accordingly.
Currently, our analysis searches for entry points in the process. Two possible entry points are e.g.
this.runtimeService.startProcessInstanceByKey("myProcess", processVariables);The variables which are passed to the process are included in the analysis. However, it is possible that a process is started twice within a project. In this case, the variables are currently merged (union of variable sets).
The correct way would be to run two seperate analyses, one per entry point.
To implement this extension, the analysis must be conducted per entry point and the frontend must be changed accordingly.