Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion packages/backend/src/connectors/connectors.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,10 @@ export class ConnectorsService {
: undefined;

const config = {
baseUrl: connector.baseUrl,
// Apply the cloud db-rest host swap so the in-app "Run Test" hits the
// real (internal) endpoint, same as MCP tool execution — otherwise it
// calls the public base URL and hangs/times out.
baseUrl: resolveInternalDbRestUrl(connector.baseUrl),
authType: connector.authType,
authConfig,
headers: connector.headers as Record<string, string>,
Expand Down
Loading