diff options
Diffstat (limited to 'routers/private/manager.go')
-rw-r--r-- | routers/private/manager.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/private/manager.go b/routers/private/manager.go index 192c4947e7..1ccb184363 100644 --- a/routers/private/manager.go +++ b/routers/private/manager.go @@ -35,7 +35,7 @@ func FlushQueues(ctx *context.PrivateContext) { }) return } - err := queue.GetManager().FlushAll(ctx.Req.Context(), opts.Timeout) + err := queue.GetManager().FlushAll(ctx, opts.Timeout) if err != nil { ctx.JSON(http.StatusRequestTimeout, map[string]interface{}{ "err": fmt.Sprintf("%v", err), |