Skip to content

Commit

Permalink
feat(torch): increase timeout for processing queues
Browse files Browse the repository at this point in the history
Signed-off-by: Jose Ramon Mañes <[email protected]>
  • Loading branch information
tty47 committed Apr 16, 2024
1 parent 8100830 commit c1670f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/nodes/queue.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
var (
taskQueue = make(chan config.Peer) // taskQueue channel for pending tasks (peers to process later).
MaxRetryCount = 5 // MaxRetryCount number of retries per node.
TickerTime = 5 * time.Second // TickerTime time specified to make a signal.
TickerTime = 10 * time.Second // TickerTime time specified to make a signal.
timeoutDurationProcessQueue = 60 * time.Second // timeoutDurationProcessQueue time specified to make a signal.
)

Expand Down

0 comments on commit c1670f8

Please sign in to comment.