mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-10 22:41:41 +00:00
Fix: response includes all remaining callbacks from every list.
This commit is contained in:
parent
cc41379d4a
commit
9303ef0eee
1 changed files with 1 additions and 1 deletions
|
|
@ -12173,7 +12173,7 @@ async def delete_callback(
|
|||
return {
|
||||
"message": f"Successfully deleted callback: {callback_name}",
|
||||
"removed_callback": callback_name,
|
||||
"remaining_callbacks": success_callbacks,
|
||||
"remaining_callbacks": success_callbacks + failure_callbacks + new_callbacks,
|
||||
"deleted_at": datetime.now().isoformat(),
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue