Merge pull request #13622 from BerriAI/fix-passthrough-deletion-failure

Fix query passthrough deletion
This commit is contained in:
Krish Dholakia 2025-08-19 22:34:07 -07:00 committed by GitHub
commit 4df07a5060
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -4931,7 +4931,7 @@ export const deletePassThroughEndpointsCall = async (
try {
let url = proxyBaseUrl
? `${proxyBaseUrl}/config/pass_through_endpoint?endpoint_id=${endpointId}`
: `/config/pass_through_endpoint${endpointId}`;
: `/config/pass_through_endpoint?endpoint_id=${endpointId}`;
//message.info("Requesting model data");
const response = await fetch(url, {