From c2181137f4d5017edad0ed89f67a6581de49041b Mon Sep 17 00:00:00 2001 From: Spencer Judge Date: Thu, 14 Dec 2023 15:12:07 -0800 Subject: [PATCH] This shouldn't have been a panic --- core/src/worker/workflow/workflow_stream.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/worker/workflow/workflow_stream.rs b/core/src/worker/workflow/workflow_stream.rs index 0602f1018..7716de938 100644 --- a/core/src/worker/workflow/workflow_stream.rs +++ b/core/src/worker/workflow/workflow_stream.rs @@ -386,7 +386,7 @@ impl WFStream { // We accept that there might be query tasks remaining in the buffer if we evicted // and re-instantiated here. It's likely those tasks are now invalidated anyway. if maybe_buffered.has_tasks() && should_evict { - panic!("There were leftover buffered tasks"); + warn!("There were leftover buffered tasks when evicting run"); } } }