-
Notifications
You must be signed in to change notification settings - Fork 765
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
Graph: re-entry transition is missing its entry action #588
Comments
Thanks for writing this up, @nightroman. I think that in this case the graph output is correct since stateless/example/BugTrackerExample/Bug.cs Lines 42 to 43 in d58e33b
Does this explain what you're seeing? Thanks |
On transitioning from stateless/example/BugTrackerExample/Program.cs Lines 13 to 14 in d58e33b
In other words, |
Thanks for the quick reply. I really shouldn't try to debug stuff when I'm tired :) I'll try to spend some time on this over the next few days, unless you're already working on it. Thanks |
As for contributing, in a way... at this point I've been working on PowerShell helpers for Stateless: #592 These tools are useful for state machine interactive testing, low ceremony graph generation/show, etc. |
Here is the graph of the official BugTrackerExample
Note that it correctly shows the label
Assign / OnAssigned
on transitioning fromOpen
toAssigned
and fromDeferred
toAssigned
.But on transitioning from
Assigned
toAssigned
(re-entry) the label is justAssign
instead of expectedAssign / OnAssigned
.(
OnAssigned
is called on re-entry toAssigned
and this should be reflected).The text was updated successfully, but these errors were encountered: