Skip to content

Commit

Permalink
[TWTR][CX-17516] Queue tasks even if already being handled by the exe…
Browse files Browse the repository at this point in the history
…cutor
  • Loading branch information
aoen committed Dec 10, 2019
1 parent 67a4d1c commit e6fa402
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions airflow/jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -1224,10 +1224,9 @@ def _find_executable_task_instances(self, simple_dag_bag, states, session=None):

if self.executor.has_task(task_instance):
self.log.debug(
"Not handling task %s as the executor reports it is running",
"Still handling task %s even though as the executor reports it is running",
task_instance.key
)
continue
executable_tis.append(task_instance)
open_slots -= 1
dag_id_to_possibly_running_task_count[dag_id] += 1
Expand Down
2 changes: 1 addition & 1 deletion airflow/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
# under the License.
#

version = '1.10.0+twtr23'
version = '1.10.0+twtr24'

0 comments on commit e6fa402

Please sign in to comment.