make columns by root shoot once in 5 slots

This commit is contained in:
Agnish Ghosh 2024-10-03 16:55:38 +05:30
parent 28e7d9187c
commit 87ed9123c7
1 changed files with 2 additions and 1 deletions

View File

@ -41,6 +41,7 @@ const
DATA_COLUMN_GOSSIP_WAIT_TIME_NS* = 5 * 1_000_000_000
POLL_INTERVAL = 1.seconds
POLL_INTERVAL_FOR_DATA_COLUMNS = 60.seconds
type
@ -574,7 +575,7 @@ proc requestManagerDataColumnLoop(
rman: RequestManager) {.async: (raises: [CancelledError]).} =
while true:
await sleepAsync(POLL_INTERVAL)
await sleepAsync(POLL_INTERVAL_FOR_DATA_COLUMNS)
if rman.inhibit():
continue