increase backoff to 30 seconds
Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>
This commit is contained in:
parent
b6a593b20c
commit
f7cf6bb619
1 changed files with 2 additions and 2 deletions
|
|
@ -1469,9 +1469,9 @@ func (r *basePoolManager) consumeQueuedJobs() error {
|
|||
continue
|
||||
}
|
||||
|
||||
if time.Since(job.UpdatedAt) < time.Second*20 {
|
||||
if time.Since(job.UpdatedAt) < time.Second*30 {
|
||||
// give the idle runners a chance to pick up the job.
|
||||
log.Printf("[Pool mgr %s] job %d was updated less than 20 seconds ago. Skipping", r.helper.String(), job.ID)
|
||||
log.Printf("[Pool mgr %s] job %d was updated less than 30 seconds ago. Skipping", r.helper.String(), job.ID)
|
||||
continue
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue