Class: Gitlab::Database::HealthStatus::Signals::Stop

Inherits:
Base
  • Object
show all
Defined in:
lib/gitlab/database/health_status/signals.rb

Overview

A Signals::Stop is an indication to put a migration on hold or stop it entirely: In general, we want to slow down or pause the migration.

Instance Attribute Summary

Attributes inherited from Base

#indicator_class, #reason

Instance Method Summary collapse

Methods inherited from Base

#initialize, #short_name, #to_s

Constructor Details

This class inherits a constructor from Gitlab::Database::HealthStatus::Signals::Base

Instance Method Details

#log_info?Boolean

Returns:

  • (Boolean)


36
37
38
# File 'lib/gitlab/database/health_status/signals.rb', line 36

def log_info?
  true
end

#stop?Boolean

Returns:

  • (Boolean)


40
41
42
# File 'lib/gitlab/database/health_status/signals.rb', line 40

def stop?
  true
end