Skip to content

Commit 54bd095

Browse files
authored
[TWTR][CX-17516] Queue tasks already being handled by the executor (#26)
* [TWTR][CX-17516] Queue tasks even if already being handled by the executor * [AIRFLOW-4332] Upgrade sqlalchemy to remove security Vulnerability
1 parent 67a4d1c commit 54bd095

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

airflow/jobs.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -1224,10 +1224,9 @@ def _find_executable_task_instances(self, simple_dag_bag, states, session=None):
12241224

12251225
if self.executor.has_task(task_instance):
12261226
self.log.debug(
1227-
"Not handling task %s as the executor reports it is running",
1227+
"Still handling task %s even though as the executor reports it is running",
12281228
task_instance.key
12291229
)
1230-
continue
12311230
executable_tis.append(task_instance)
12321231
open_slots -= 1
12331232
dag_id_to_possibly_running_task_count[dag_id] += 1

airflow/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
# under the License.
1919
#
2020

21-
version = '1.10.0+twtr23'
21+
version = '1.10.0+twtr24'

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ def do_setup():
297297
'python-nvd3==0.15.0',
298298
'requests>=2.5.1, <3',
299299
'setproctitle>=1.1.8, <2',
300-
'sqlalchemy>=1.1.15, <1.2.0',
300+
'sqlalchemy>=1.1.15, <1.4.0',
301301
'tabulate>=0.7.5, <0.8.0',
302302
'tenacity==4.8.0',
303303
'thrift>=0.9.2',

0 commit comments

Comments
 (0)