this repo has no description
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add 10ms base to backoff

garrison f5d9725c 0e420334

+2 -3
+1 -2
lib/utils.ex
··· 287 287 end 288 288 289 289 defp backoff_delay(attempt) do 290 - # TODO: * 10 291 - Integer.pow(2, attempt) 290 + 10 * Integer.pow(2, attempt) 292 291 end 293 292 294 293 @spec inc_stat(map, term, number) :: map
+1 -1
test/hobbes_test.exs
··· 158 158 keys: 80, 159 159 clients: 20, 160 160 client_tick_ms: 100, 161 - duration_ms: 30_000, 161 + duration_ms: 20_000, 162 162 ]}, 163 163 {Workloads.RestartNodes, [ 164 164 delay_ms: 7000,