nickstenning commented on code in PR #62436: URL: https://github.com/apache/airflow/pull/62436#discussion_r2852806612
########## airflow-core/src/airflow/jobs/job.py: ########## @@ -35,14 +37,18 @@ from airflow.exceptions import AirflowException from airflow.listeners.listener import get_listener_manager from airflow.models.base import ID_LEN, Base -from airflow.observability.trace import DebugTrace, add_debug_span from airflow.utils.helpers import convert_camel_to_snake from airflow.utils.log.logging_mixin import LoggingMixin from airflow.utils.net import get_hostname from airflow.utils.platform import getuser from airflow.utils.session import NEW_SESSION, create_session, provide_session from airflow.utils.sqlalchemy import UtcDateTime +non_recording_context = SpanContext( + trace_id=0, span_id=0, is_remote=False, trace_flags=TraceFlags.get_default() +) Review Comment: ```suggestion ``` -- 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]
