We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4491c9b commit dfab84dCopy full SHA for dfab84d
1 file changed
src/mongoPatch.ts
@@ -17,7 +17,7 @@ export function useProxyForMongo(config: Config) {
17
socks.SocksClient.createConnection = async (options, callback) => {
18
const proxy = new HttpsProxySocket(`https://${config.proxy}`, { auth: config.auth });
19
const socket = await proxy.connect({ host: options.destination.host, port: options.destination.port });
20
- socket.unref()
+ socket.unref();
21
sockets.push(socket);
22
return {
23
socket,
0 commit comments