(fix) proxy raise exception when config passed in

This commit is contained in:
ishaan-jaff 2023-11-10 16:28:34 -08:00
parent 29eac53d76
commit 78e1ed9575
2 changed files with 2 additions and 2 deletions

View file

@ -207,7 +207,7 @@ def load_router_config(router: Optional[litellm.Router], config_file_path: str):
else:
pass
except Exception as e:
print_verbose(f"Exception while reading Config: {e}")
raise Exception(f"Exception while reading Config: {e}")
pass