File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
airflow/providers/google/cloud/operators Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -802,7 +802,7 @@ def __init__(
802
802
runtime_args : Optional [Dict [str , Any ]] = None ,
803
803
success_states : Optional [List [str ]] = None ,
804
804
namespace : str = "default" ,
805
- pipeline_timeout : int = 10 * 60 ,
805
+ pipeline_timeout : int = 5 * 60 ,
806
806
project_id : Optional [str ] = None ,
807
807
api_version : str = "v1beta1" ,
808
808
gcp_conn_id : str = "google_cloud_default" ,
@@ -823,13 +823,12 @@ def __init__(
823
823
self .delegate_to = delegate_to
824
824
self .impersonation_chain = impersonation_chain
825
825
self .asynchronous = asynchronous
826
+ self .pipeline_timeout = pipeline_timeout
826
827
827
828
if success_states :
828
829
self .success_states = success_states
829
- self .pipeline_timeout = pipeline_timeout
830
830
else :
831
831
self .success_states = SUCCESS_STATES + [PipelineStates .RUNNING ]
832
- self .pipeline_timeout = 5 * 60
833
832
834
833
def execute (self , context : dict ) -> str :
835
834
hook = DataFusionHook (
You can’t perform that action at this time.
0 commit comments