optimize-queue #4

Merged
sinhluu merged 3 commits from optimize-queue into master 2024-07-08 09:42:36 +00:00
1 changed files with 3 additions and 1 deletions
Showing only changes of commit ae421219cb - Show all commits

View File

@ -1,8 +1,9 @@
package queue
import (
"github.com/hibiken/asynq"
"time"
"github.com/hibiken/asynq"
)
const (
@ -19,6 +20,7 @@ func (i Instance) RunTask(typename string, payload []byte, priority string, retr
if priority != PriorityCritical && priority != PriorityDefault && priority != PriorityLow {
priority = PriorityDefault
}
priority = i.Config.QueuePrefix + priority
options = append(options, asynq.Queue(priority))
// Retry times