From bcc0bde2afa7028939af737b46533b465baeb22d Mon Sep 17 00:00:00 2001 From: comfyanonymous Date: Fri, 12 Jan 2024 17:21:22 -0500 Subject: [PATCH] Clear status notes on execution start. --- execution.py | 1 + 1 file changed, 1 insertion(+) diff --git a/execution.py b/execution.py index 554e8dc1..752e1d5a 100644 --- a/execution.py +++ b/execution.py @@ -334,6 +334,7 @@ class PromptExecutor: else: self.server.client_id = None + self.status_notes = [] self.add_note("execution_start", { "prompt_id": prompt_id}, broadcast=False) with torch.inference_mode():