refac/fix: remove insecure arg for otel http exporter

This commit is contained in:
Timothy Jaeryang Baek 2025-07-21 16:35:23 +04:00
parent a26607c720
commit d8b80caff3

View file

@ -42,7 +42,6 @@ def setup(app: FastAPI, db_engine: Engine):
if OTEL_OTLP_SPAN_EXPORTER == "http":
exporter = HttpOTLPSpanExporter(
endpoint=OTEL_EXPORTER_OTLP_ENDPOINT,
insecure=OTEL_EXPORTER_OTLP_INSECURE,
headers=headers,
)
else: