Skip to content

Commit 6e41c7e

Browse files
author
Łukasz Wyszomirski
authored
Fixed never ending loop to in CreateWorkflowInvocation (#25737)
1 parent d991d98 commit 6e41c7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

airflow/providers/google/cloud/hooks/dataform.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def wait_for_workflow_invocation(
7777
repository_id=repository_id,
7878
workflow_invocation_id=workflow_invocation_id,
7979
)
80-
state = workflow_invocation
80+
state = workflow_invocation.state
8181
except Exception as err:
8282
self.log.info(
8383
"Retrying. Dataform API returned error when waiting for workflow invocation: %s", err

0 commit comments

Comments
 (0)