2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 07:57:21 +08:00

feat: 防止任务重复提交

This commit is contained in:
耗子
2024-11-04 17:47:39 +08:00
parent c308b8e42c
commit e18d40b0ab
2 changed files with 11 additions and 1 deletions

View File

@@ -8,6 +8,6 @@ import (
)
func initQueue() {
app.Queue = queue.New(40)
app.Queue = queue.New(100)
go app.Queue.Run(context.Background())
}