diff options
| author | 2021-03-23 22:17:08 +0000 | |
|---|---|---|
| committer | 2021-03-23 22:17:08 +0000 | |
| commit | 2181315b0a4656b55f652dd84fa8ca5c0ae0c4b1 (patch) | |
| tree | 15970ec663639695e95a80d301ef1ab8de658e17 /services/incremental/IncrementalService.cpp | |
| parent | f62fa10c22aec19bc596c8d71e76e8cb83cd4ea0 (diff) | |
| parent | 7b3e06e1c2293d24f2f884a515177393be32dbba (diff) | |
Merge "Add a first chance retry delay of 1s." into sc-dev
Diffstat (limited to 'services/incremental/IncrementalService.cpp')
| -rw-r--r-- | services/incremental/IncrementalService.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/services/incremental/IncrementalService.cpp b/services/incremental/IncrementalService.cpp index 932e99783c83..bd3f99a5efb8 100644 --- a/services/incremental/IncrementalService.cpp +++ b/services/incremental/IncrementalService.cpp @@ -81,8 +81,8 @@ struct Constants { static constexpr auto bindingTimeout = 1min; - // 10s, 100s (~2min), 1000s (~15min), 10000s (~3hrs) - static constexpr auto minBindDelay = 10s; + // 1s, 10s, 100s (~2min), 1000s (~15min), 10000s (~3hrs) + static constexpr auto minBindDelay = 1s; static constexpr auto maxBindDelay = 10000s; static constexpr auto bindDelayMultiplier = 10; static constexpr auto bindDelayJitterDivider = 10; |