method

validate_step_not_nested!

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