We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e637733 commit c217bddCopy full SHA for c217bdd
litellm/proxy/pass_through_endpoints/pass_through_endpoints.py
@@ -2005,9 +2005,9 @@ async def initialize_pass_through_endpoints(
2005
)
2006
2007
# remove the ones that are not visited from the list
2008
- for endpoint in registered_pass_through_endpoints:
2009
- if endpoint not in visited_endpoints:
2010
- InitPassThroughEndpointHelpers.remove_endpoint_routes(endpoint)
+ for endpoint_key in registered_pass_through_endpoints:
+ if endpoint_key not in visited_endpoints:
+ InitPassThroughEndpointHelpers.remove_endpoint_routes(endpoint_key)
2011
2012
2013
async def _get_pass_through_endpoints_from_db(
0 commit comments