Skip to content

Commit

Permalink
Updating the retry count to not bring the server out of commission (#…
Browse files Browse the repository at this point in the history
…1923)

fixes #1921
  • Loading branch information
carolyncole authored Sep 12, 2024
1 parent e03dcaf commit e32700c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 13 deletions.
26 changes: 13 additions & 13 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ GEM
rubocop-rspec
bootsnap (1.11.1)
msgpack (~> 1.2)
builder (3.2.4)
builder (3.3.0)
byebug (11.1.3)
capistrano (3.17.0)
airbrussh (>= 1.0.0)
Expand All @@ -154,7 +154,7 @@ GEM
coderay (1.1.3)
coercible (1.0.0)
descendants_tracker (~> 0.0.1)
concurrent-ruby (1.3.1)
concurrent-ruby (1.3.4)
connection_pool (2.4.1)
coveralls_reborn (0.28.0)
simplecov (~> 0.22.0)
Expand Down Expand Up @@ -200,7 +200,7 @@ GEM
ed25519 (1.3.0)
equivalent-xml (0.6.0)
nokogiri (>= 1.4.3)
erubi (1.12.0)
erubi (1.13.0)
eventmachine (1.2.7)
factory_bot (6.2.1)
activesupport (>= 5.0.0)
Expand All @@ -224,7 +224,7 @@ GEM
tilt
hashdiff (1.0.1)
hashie (3.6.0)
health-monitor-rails (11.1.0)
health-monitor-rails (12.3.0)
railties (>= 6.1)
honeybadger (5.2.1)
i18n (1.14.5)
Expand Down Expand Up @@ -270,13 +270,13 @@ GEM
thin
marcel (1.0.2)
matrix (0.4.2)
method_source (1.0.0)
method_source (1.1.0)
mime-types (3.4.1)
mime-types-data (~> 3.2015)
mime-types-data (3.2022.0105)
mini_mime (1.1.5)
mini_portile2 (2.8.7)
minitest (5.23.1)
minitest (5.25.1)
msgpack (1.5.1)
mustermann (2.0.2)
ruby2_keywords (~> 0.0.1)
Expand All @@ -297,12 +297,12 @@ GEM
net-protocol
net-ssh (7.0.0.beta1)
nio4r (2.7.0)
nokogiri (1.16.5)
nokogiri (1.16.7)
mini_portile2 (~> 2.8.2)
racc (~> 1.4)
nokogiri (1.16.5-x86_64-darwin)
nokogiri (1.16.7-x86_64-darwin)
racc (~> 1.4)
nokogiri (1.16.5-x86_64-linux)
nokogiri (1.16.7-x86_64-linux)
racc (~> 1.4)
omniauth (2.1.2)
hashie (>= 3.4.6)
Expand All @@ -328,7 +328,7 @@ GEM
public_suffix (5.0.3)
puma (5.6.8)
nio4r (~> 2.0)
racc (1.8.0)
racc (1.8.1)
rack (2.2.9)
rack-mini-profiler (2.3.4)
rack (>= 1.2.0)
Expand Down Expand Up @@ -371,7 +371,7 @@ GEM
rake (>= 12.2)
thor (~> 1.0)
rainbow (3.1.1)
rake (13.1.0)
rake (13.2.1)
rb-fsevent (0.11.1)
rb-inotify (0.10.1)
ffi (~> 1.0)
Expand Down Expand Up @@ -494,7 +494,7 @@ GEM
daemons (~> 1.0, >= 1.0.9)
eventmachine (~> 1.0, >= 1.0.4)
rack (>= 1, < 3)
thor (1.3.1)
thor (1.3.2)
thread_safe (0.3.6)
tilt (2.0.11)
time (0.2.2)
Expand Down Expand Up @@ -546,7 +546,7 @@ GEM
xpath (3.2.0)
nokogiri (~> 1.8)
yard (0.9.36)
zeitwerk (2.6.15)
zeitwerk (2.6.18)

PLATFORMS
ruby
Expand Down
1 change: 1 addition & 0 deletions config/initializers/health_monitor.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
config.sidekiq.configure do |sidekiq_config|
sidekiq_config.latency = 12.hours
sidekiq_config.queue_size = 20_000
sidekiq_config.maximum_amount_of_retries = 999_999 # this is really large becuase we don't really want to take the server out of rotation for this
end

config.error_callback = proc do |e|
Expand Down

0 comments on commit e32700c

Please sign in to comment.