fix(core_node): Fix unix socket URL parsing and handling in CoreRequest
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user