diff options
Diffstat (limited to 'pkg/worker_watcher/container/queue/queue.go')
-rw-r--r-- | pkg/worker_watcher/container/queue/queue.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pkg/worker_watcher/container/queue/queue.go b/pkg/worker_watcher/container/queue/queue.go index 4f611bbe..edf81d60 100644 --- a/pkg/worker_watcher/container/queue/queue.go +++ b/pkg/worker_watcher/container/queue/queue.go @@ -91,7 +91,9 @@ func (q *Queue) Pop(ctx context.Context) (worker.BaseProcess, error) { return w, nil } -func (q *Queue) Remove(_ int64) {} +func (q *Queue) Replace(oldPid int64, newWorker worker.BaseProcess) { + +} func (q *Queue) Destroy() {} |