fix(core_node): Fix unix socket URL parsing and handling in CoreRequest

This commit is contained in:
2025-11-16 23:22:58 +00:00
parent f3ba77050a
commit 9f3503704b
4 changed files with 22 additions and 5 deletions

View File

@@ -86,9 +86,7 @@ export class CoreRequest extends AbstractCoreRequest<
// Handle unix socket URLs
if (CoreRequest.isUnixSocket(this.url)) {
const { socketPath, path } = CoreRequest.parseUnixSocketUrl(
this.options.path,
);
const { socketPath, path } = CoreRequest.parseUnixSocketUrl(this.url);
this.options.socketPath = socketPath;
this.options.path = path;
}