Skip to content

Commit

Permalink
Fixed never ending loop to in CreateWorkflowInvocation (#25737)
Browse files Browse the repository at this point in the history
  • Loading branch information
Łukasz Wyszomirski committed Aug 16, 2022
1 parent d991d98 commit 6e41c7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airflow/providers/google/cloud/hooks/dataform.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def wait_for_workflow_invocation(
repository_id=repository_id,
workflow_invocation_id=workflow_invocation_id,
)
state = workflow_invocation
state = workflow_invocation.state
except Exception as err:
self.log.info(
"Retrying. Dataform API returned error when waiting for workflow invocation: %s", err
Expand Down

0 comments on commit 6e41c7e

Please sign in to comment.