This is an automated email from the ASF dual-hosted git repository. ephraimanierobi pushed a commit to branch v2-6-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 2e8eb4242a8e6312d73bc8301fd9da37cc38af87 Author: Mike Sadler <[email protected]> AuthorDate: Fri May 5 15:09:58 2023 -0500 Format DagBag.dagbag_report() Output (#31095) The whitespace before `{table}` is throwing off the headers when printing `DagBag.dagbag_report()` (cherry picked from commit 41c87464428d8d31ba81444b3adf457bc968e11d) --- airflow/models/dagbag.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/airflow/models/dagbag.py b/airflow/models/dagbag.py index 3d00ac973f..c5f6345241 100644 --- a/airflow/models/dagbag.py +++ b/airflow/models/dagbag.py @@ -605,8 +605,7 @@ class DagBag(LoggingMixin): ------------------------------------------------------------------- Number of DAGs: {dag_num} Total task number: {task_num} - DagBag parsing time: {duration} - {table} + DagBag parsing time: {duration}\n{table} """ ) return report
