File tree Expand file tree Collapse file tree 3 files changed +12
-0
lines changed
docs/modules/airflow/examples/getting_started/code Expand file tree Collapse file tree 3 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## [ Unreleased]
4
4
5
+ ### Fixed
6
+
7
+ - getting_started: Add a 120 second timeout before trying to enable the DAG ([ #665 ] ).
8
+
9
+ [ #665 ] : https://github.com/stackabletech/airflow-operator/pull/665
10
+
5
11
## [ 25.7.0] - 2025-07-23
6
12
7
13
## [ 25.7.0-rc1] - 2025-07-18
Original file line number Diff line number Diff line change @@ -122,6 +122,9 @@ enable_dag() {
122
122
-d ' {"is_paused": false}'
123
123
# end::enable-dag[]
124
124
}
125
+ SLEEP_SECONDS=120
126
+ echo " Sleeping for $SLEEP_SECONDS seconds to wait for the DAG to be registered"
127
+ sleep " $SLEEP_SECONDS "
125
128
echo " Triggering a DAG run. Enable DAG..."
126
129
enable_dag
127
130
Original file line number Diff line number Diff line change @@ -122,6 +122,9 @@ enable_dag() {
122
122
-d ' {"is_paused": false}'
123
123
# end::enable-dag[]
124
124
}
125
+ SLEEP_SECONDS=120
126
+ echo " Sleeping for $SLEEP_SECONDS seconds to wait for the DAG to be registered"
127
+ sleep " $SLEEP_SECONDS "
125
128
echo " Triggering a DAG run. Enable DAG..."
126
129
enable_dag
127
130
You can’t perform that action at this time.
0 commit comments