praphi-git commented on issue #49039: URL: https://github.com/apache/airflow/issues/49039#issuecomment-2797159879
yes I did. it creates an endpoint like this - https://otlp-ingest/ot:443/v1/traces. i was able to use 443 with below code change In /airflow/traces/otel_tracer.py - function get_otel_tracer ``` protocol = "https" if ssl_active else "http" if port == 443: endpoint = f"{protocol}://{host}/v1/traces" else: endpoint = f"{protocol}://{host}:{port}/v1/traces" ``` -- 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]
