mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-26 03:04:13 +00:00
fix(proxy/utils.py): fix bool on check
This commit is contained in:
parent
88c550e3b7
commit
5912decd19
1 changed files with 1 additions and 1 deletions
|
@ -199,7 +199,7 @@ class ProxyLogging:
|
||||||
alerting_args: Optional[dict] = None,
|
alerting_args: Optional[dict] = None,
|
||||||
):
|
):
|
||||||
updated_slack_alerting: bool = False
|
updated_slack_alerting: bool = False
|
||||||
if self.alerting is not None:
|
if alerting is not None:
|
||||||
self.alerting = alerting
|
self.alerting = alerting
|
||||||
updated_slack_alerting = True
|
updated_slack_alerting = True
|
||||||
if alerting_threshold is not None:
|
if alerting_threshold is not None:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue