method

validate_step_not_nested!

rails latest stable - Class: ActiveJob::Continuation::Validation

Method not available on this version

This method is only available on newer versions. The first available version (v8.1.1) is shown here.

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