fjtirado commented on issue #4051: URL: https://github.com/apache/incubator-kie-kogito-runtimes/issues/4051#issuecomment-3302257509
@oEscal A brief description of the merged solution. The model is cloned before the branches are created. This means, that stateDataFilter witin a paralle branch, updates the cloned model, not the original one. Once a branch is done, the cloned model is merged back into the original one. So, if the cloned model was not changed (which is very unlikely, but might happen) the original one will remain with the same content. Also, since the other branches has their own copy, they wont see the changes performed by other branches. This implies that they cannot see, in any way, the changes performed by other branches (thats probably ok, if your branch depend on the result of the other, you should not use a parallel state) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
