Skip to content
Snippets Groups Projects

Circuitbreaker backoff and retries

Merged Bob Van Landuyt requested to merge bvl-circuitbreaker-backoff into master
All threads resolved!
7 files
+ 64
11
Compare changes
  • Side-by-side
  • Inline
Files
7
@@ -120,6 +120,15 @@ def circuitbreaker_failure_count_help_text
@@ -120,6 +120,15 @@ def circuitbreaker_failure_count_help_text
message.html_safe
message.html_safe
end
end
 
def circuitbreaker_access_retries_help_text
 
_('The number of attempts GitLab will make to access a storage.')
 
end
 
 
def circuitbreaker_backoff_threshold_help_text
 
_("The number of failures after which GitLab will start temporarily "\
 
"disabling access to a storage shard on a host")
 
end
 
def circuitbreaker_failure_wait_time_help_text
def circuitbreaker_failure_wait_time_help_text
_("When access to a storage fails. GitLab will prevent access to the "\
_("When access to a storage fails. GitLab will prevent access to the "\
"storage for the time specified here. This allows the filesystem to "\
"storage for the time specified here. This allows the filesystem to "\
@@ -144,6 +153,8 @@ def visible_attributes
@@ -144,6 +153,8 @@ def visible_attributes
:akismet_api_key,
:akismet_api_key,
:akismet_enabled,
:akismet_enabled,
:auto_devops_enabled,
:auto_devops_enabled,
 
:circuitbreaker_access_retries,
 
:circuitbreaker_backoff_threshold,
:circuitbreaker_failure_count_threshold,
:circuitbreaker_failure_count_threshold,
:circuitbreaker_failure_reset_time,
:circuitbreaker_failure_reset_time,
:circuitbreaker_failure_wait_time,
:circuitbreaker_failure_wait_time,
Loading