This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 3c066a22e5 Fix after 41238: Left 2 print statements in code (#41245)
3c066a22e5 is described below
commit 3c066a22e59c687f179c1a0618191899cf04f79f
Author: Jens Scheffler <[email protected]>
AuthorDate: Sat Aug 3 22:39:17 2024 +0200
Fix after 41238: Left 2 print statements in code (#41245)
---
airflow/settings.py | 2 --
1 file changed, 2 deletions(-)
diff --git a/airflow/settings.py b/airflow/settings.py
index ddc91a6c54..96e852f278 100644
--- a/airflow/settings.py
+++ b/airflow/settings.py
@@ -348,8 +348,6 @@ class TracebackSessionForTests:
@staticmethod
def set_allow_db_access(session, flag: bool):
"""Temporarily, e.g. for pytests allow access to DB to prepare
stuff."""
- print(session)
- print(session.__class__)
if isinstance(session, TracebackSessionForTests):
session.allow_db_access = flag