fix: keep require_auth_for_metrics_endpoint default at True

main has True; an unrelated Cursor Agent commit on this branch
silently flipped it to False, which would disable /metrics auth
for every deployment that relied on the default after this PR
merges. Drop the unrelated change to restore main's behavior.
This commit is contained in:
mateo-berri 2026-05-16 01:39:55 +00:00
parent 576370ccb5
commit e59202e438
No known key found for this signature in database

View file

@ -166,7 +166,7 @@ langfuse_default_tags: Optional[List[str]] = None
langsmith_batch_size: Optional[int] = None
prometheus_initialize_budget_metrics: Optional[bool] = False
prometheus_latency_buckets: Optional[List[float]] = None
require_auth_for_metrics_endpoint: Optional[bool] = False
require_auth_for_metrics_endpoint: Optional[bool] = True
argilla_batch_size: Optional[int] = None
datadog_use_v1: Optional[bool] = False # if you want to use v1 datadog logged payload.
gcs_pub_sub_use_v1: Optional[bool] = (