Skip to content

Commit 05ae67f

Browse files
committed
[apiserver/ingest] Use single EDGE_FUNC_INGEST_TASK_QUEUE worker queue
1 parent a19c50f commit 05ae67f

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

pkg/apiserver/extensions/edgefunctionrevision.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ func (r *EdgeFunctionRevisionGCReconciler) Reconcile(ctx context.Context, req re
8787
// Execute cleanup workflow.
8888
wOpts := tclient.StartWorkflowOptions{
8989
ID: revision.Name + "-cleanup",
90-
TaskQueue: ingest.EdgeFunctionCleanupQueue,
90+
TaskQueue: ingest.EdgeFunctionIngestQueue,
9191
WorkflowExecutionTimeout: 10 * time.Minute,
9292
}
9393
in := &ingest.EdgeFunctionIngestParams{

pkg/apiserver/ingest/edgefunction.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,7 @@ import (
4141
)
4242

4343
const (
44-
EdgeFunctionIngestQueue = "EDGE_FUNC_INGEST_TASK_QUEUE"
45-
EdgeFunctionCleanupQueue = "EDGE_FUNC_CLEANUP_TASK_QUEUE"
44+
EdgeFunctionIngestQueue = "EDGE_FUNC_INGEST_TASK_QUEUE"
4645
)
4746

4847
const (

0 commit comments

Comments
 (0)