2017-11-13 10:52:07 -05:00
|
|
|
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
|
|
|
|
# for more information on how to write migrations for GitLab.
|
|
|
|
|
2018-11-13 02:27:31 -05:00
|
|
|
class UpdateCircuitbreakerDefaults < ActiveRecord::Migration[4.2]
|
2017-11-13 10:52:07 -05:00
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
|
|
|
DOWNTIME = false
|
|
|
|
|
|
|
|
class ApplicationSetting < ActiveRecord::Base; end
|
|
|
|
|
|
|
|
def up
|
|
|
|
change_column_default :application_settings,
|
|
|
|
:circuitbreaker_failure_count_threshold,
|
|
|
|
3
|
|
|
|
change_column_default :application_settings,
|
|
|
|
:circuitbreaker_storage_timeout,
|
|
|
|
15
|
|
|
|
|
|
|
|
ApplicationSetting.update_all(circuitbreaker_failure_count_threshold: 3,
|
|
|
|
circuitbreaker_storage_timeout: 15)
|
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
change_column_default :application_settings,
|
|
|
|
:circuitbreaker_failure_count_threshold,
|
|
|
|
160
|
|
|
|
change_column_default :application_settings,
|
|
|
|
:circuitbreaker_storage_timeout,
|
|
|
|
30
|
|
|
|
|
|
|
|
ApplicationSetting.update_all(circuitbreaker_failure_count_threshold: 160,
|
|
|
|
circuitbreaker_storage_timeout: 30)
|
|
|
|
end
|
|
|
|
end
|