mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-06 08:16:43 +00:00
Merge pull request #4662 from msabramo/slack-alert-add-missing-space
Add missing space in "Failed Tracking Cost" Slack alert msg
This commit is contained in:
commit
17822db657
1 changed files with 1 additions and 1 deletions
|
|
@ -675,7 +675,7 @@ class SlackAlerting(CustomLogger):
|
|||
async def failed_tracking_alert(self, error_message: str):
|
||||
"""Raise alert when tracking failed for specific model"""
|
||||
_cache: DualCache = self.internal_usage_cache
|
||||
message = "Failed Tracking Cost for" + error_message
|
||||
message = "Failed Tracking Cost for " + error_message
|
||||
_cache_key = "budget_alerts:failed_tracking:{}".format(message)
|
||||
result = await _cache.async_get_cache(key=_cache_key)
|
||||
if result is None:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue