Fokko commented on a change in pull request #4633: AIRFLOW-3791: Dataflow URL: https://github.com/apache/airflow/pull/4633#discussion_r292140573
########## File path: airflow/contrib/hooks/gcp_dataflow_hook.py ########## @@ -31,88 +31,111 @@ # This is the default location # https://cloud.google.com/dataflow/pipelines/specifying-exec-params DEFAULT_DATAFLOW_LOCATION = 'us-central1' +FAILED_END_STATES = ['JOB_STATE_FAILED', 'JOB_STATE_CANCELLED'] Review comment: ```suggestion FAILED_END_STATES = {'JOB_STATE_FAILED', 'JOB_STATE_CANCELLED'} ``` ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
