| 692 | } |
| 693 | |
| 694 | void SetRetryBackoffUnitMs(int unitMs) { |
| 695 | if (unitMs < 0) unitMs = 0; |
| 696 | g_retryBackoffUnitMs.store(unitMs); |
| 697 | } |
| 698 | |
| 699 | void SetWorkerThreadCount(int count) { |
| 700 | if (count < 1) count = 1; |
nothing calls this directly
no outgoing calls
no test coverage detected