Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JBPM-3813 Process Instance Diagram in jBPM Console shows wrong multiple ... #132

Closed
wants to merge 1 commit into from

Conversation

tkobayas
Copy link
Contributor

@tkobayas tkobayas commented Oct 1, 2012

Process Instance Diagram in jBPM Console shows wrong multiple markers due to the ordering of JPAProcessInstanceDbLog.findNodeInstances()
https://issues.jboss.org/browse/JBPM-3813

This pull request is a candidate fix which ensures that an ENTER log comes before an EXIT log. But I'm not sure if I'm right about assuming 'order by type' gives asc order in time line.

…le markers due to the ordering of JPAProcessInstanceDbLog.findNodeInstances()
@mswiderski
Copy link
Contributor

I believe this could have impact on existing implementations (if someone has used this method and relied on the order) as it will change the order of events from:
N1_ENTER
N1_EXIT
N2_ENTER
N2_EXIT
N3_ENTER
N3_EXIT

to:

N1_ENTER
N2_ENTER
N3_ENTER
N1_EXIT
N2_EXIT
N3_EXIT

maybe as mentioned in jira it's better to apply filtering/sorting on graph plugin only instead. Wdyt?

@mswiderski
Copy link
Contributor

as agreed in jira, closing this pull request

@mswiderski mswiderski closed this Oct 4, 2012
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
2 participants