xBis7 commented on code in PR #49180: URL: https://github.com/apache/airflow/pull/49180#discussion_r2064328809
########## airflow-core/tests/unit/core/test_otel_tracer.py: ########## @@ -42,7 +42,8 @@ def name(): class TestOtelTrace: def test_get_otel_tracer_from_trace_metaclass(self): """Test that `Trace.some_method()`, uses an `OtelTrace` instance when otel is configured.""" - conf.add_section("traces") + if conf.getsection("traces") is None: + conf.add_section("traces") Review Comment: ok, I removed it. -- 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: commits-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org