We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
:after
The following code fails because the last step of the "original" Path() is hard-codedly pointing to its end.
step :a, Output(:not_authenticated) => Path(track_color: :_401, connect_to: Id("End.fail_fast")) do step :_401_pointing_to_end end step :_401____, after: :_401_pointing_to_end, # :before works! magnetic_to: :_401, Output(:success) => Track(:_401), Output(:failure) => Track(:_401)
The text was updated successfully, but these errors were encountered:
@apotonick I think this issue could be solved with #21 without using connect_to
connect_to
step :a, Output(:not_authenticated) => Path(track_color: :_401) do step :_401_pointing_to_end, Output(:success) => End(:fail_fast) end step :_401____, after: :_401_pointing_to_end, # :before works! magnetic_to: :_401, Output(:success) => Track(:_401), Output(:failure) => Track(:_401)
Sorry, something went wrong.
apotonick
No branches or pull requests
The following code fails because the last step of the "original" Path() is hard-codedly pointing to its end.
The text was updated successfully, but these errors were encountered: