From 8eadf481b6b9fc07f97855d31f65b04c1d98e808 Mon Sep 17 00:00:00 2001 From: Sarah Monaco Date: Fri, 18 Sep 2026 14:34:11 -0500 Subject: [PATCH] fix: Use proper keyword arg for get_by_correlation_ids_and_names Fixes #508 --- src/conductor/client/workflow/executor/workflow_executor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/conductor/client/workflow/executor/workflow_executor.py b/src/conductor/client/workflow/executor/workflow_executor.py index 88d3c6437..5bb360fd3 100644 --- a/src/conductor/client/workflow/executor/workflow_executor.py +++ b/src/conductor/client/workflow/executor/workflow_executor.py @@ -195,7 +195,7 @@ def get_by_correlation_ids_and_names(self, batch_request: CorrelationIdsSearchRe also includes workflows that are completed otherwise only running workflows are returned """ return self.workflow_client.get_by_correlation_ids_in_batch(batch_request=batch_request, - include_closed=include_closed, + include_completed=include_closed, include_tasks=include_tasks) def pause(self, workflow_id: str) -> None: