Simplify reap command line flags (#1118)

Simplify reap command line flags
This commit is contained in:
Philip O'Toole
2022-11-15 09:41:21 -05:00
committed by GitHub
parent ce33f88732
commit bfc35eaf7c
8 changed files with 162 additions and 38 deletions

View File

@@ -140,7 +140,7 @@ func (q *Queue) Stats() (map[string]interface{}, error) {
return map[string]interface{}{
"max_size": q.maxSize,
"batch_size": q.batchSize,
"timeout": q.timeout,
"timeout": q.timeout.String(),
}, nil
}