From 66e42dfc3c7d95475994fca90a8b6abc5285285f Mon Sep 17 00:00:00 2001
From: chausman <chausman@nrao.edu>
Date: Thu, 27 Apr 2023 13:54:42 -0600
Subject: [PATCH] use the right field name... sigh

---
 .../workspaces/workspaces/workflow/services/workflow_service.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/shared/workspaces/workspaces/workflow/services/workflow_service.py b/shared/workspaces/workspaces/workflow/services/workflow_service.py
index de7e1bbc7..d074e8b0e 100644
--- a/shared/workspaces/workspaces/workflow/services/workflow_service.py
+++ b/shared/workspaces/workspaces/workflow/services/workflow_service.py
@@ -1083,7 +1083,7 @@ class WorkflowMessageHandler:
 
         stage_info = self.info.lookup_workflow_stage(request.workflow_request_id, stage)
 
-        if stage_info and stage_info.end_time is not None:
+        if stage_info and stage_info.end is not None:
             # This entry already exists in progress table, message is a duplicate. Ignore
             return False
 
-- 
GitLab