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
It would be nice to have a way to see what was the last step executed by an operation, so that we can easily understand what is halting an operation.
We could set the last executed step on the operation's skill, e.g.
result = Api::V2::User::Operation::Show.call('id' => 1) result['result.last_step'] # => "model.find_by" result['result.failing_step'] # => "policy.default"
result.failing_step here can be computed like this (here be dragons):
result.failing_step
steps = Api::V2::User::Operation::Show.skills['pipetree'].instance_variable_get('@index').keys steps[steps.index(result['result.last_step']) + 1]
This should also be indicated in Pragma::Rails::NoResponseError.
Pragma::Rails::NoResponseError
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It would be nice to have a way to see what was the last step executed by an operation, so that we can easily understand what is halting an operation.
We could set the last executed step on the operation's skill, e.g.
result.failing_step
here can be computed like this (here be dragons):This should also be indicated in
Pragma::Rails::NoResponseError
.The text was updated successfully, but these errors were encountered: