method
validate_step_not_nested!
v8.1.1 -
Show latest stable
- Class:
ActiveJob::Continuation::Validation
validate_step_not_nested!(name)private
No documentation available.
# File activejob/lib/active_job/continuation/validation.rb, line 27
def validate_step_not_nested!(name)
if running_step?
raise_step_error! "Step '#{name}' is nested inside step '#{current.name}'"
end
end