uranusjr commented on code in PR #33745:
URL: https://github.com/apache/airflow/pull/33745#discussion_r1306788343


##########
airflow/jobs/backfill_job_runner.py:
##########
@@ -742,7 +742,7 @@ def tabulate_ti_keys_set(ti_keys: 
Iterable[TaskInstanceKey]) -> str:
 
             if all(key.map_index == -1 for key in ti_keys):
                 headers = ["DAG ID", "Task ID", "Run ID", "Try number"]
-                sorted_ti_keys = (k[0:4] for k in sorted_ti_keys)
+                sorted_ti_keys = [k[0:4] for k in sorted_ti_keys]

Review Comment:
   This does not seem to fit in this PR?



-- 
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.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to