mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-11 22:51:28 +00:00
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:
parent
576370ccb5
commit
e59202e438
1 changed files with 1 additions and 1 deletions
|
|
@ -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] = (
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue