Skip to content

Commit f724ccf

Browse files
authored
Don't retry intra Galley->Gundeck calls (#3482)
1 parent ba6ca9f commit f724ccf

File tree

1 file changed

+1
-4
lines changed
  • services/galley/src/Galley/Intra

1 file changed

+1
-4
lines changed

services/galley/src/Galley/Intra/Util.hs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ componentRequest Gundeck o =
6666
componentRetryPolicy :: IntraComponent -> RetryPolicy
6767
componentRetryPolicy Brig = x1
6868
componentRetryPolicy Spar = x1
69-
componentRetryPolicy Gundeck = x3
69+
componentRetryPolicy Gundeck = limitRetries 0
7070

7171
call ::
7272
IntraComponent ->
@@ -90,6 +90,3 @@ asyncCall comp req = void $ do
9090

9191
x1 :: RetryPolicy
9292
x1 = limitRetries 1
93-
94-
x3 :: RetryPolicy
95-
x3 = limitRetries 3 <> exponentialBackoff 100000

0 commit comments

Comments
 (0)