com.jimuwd.xian.registry-proxy 1.1.2 → 1.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/server/index.js +1 -1
- package/package.json +1 -1
package/dist/server/index.js
CHANGED
|
@@ -411,7 +411,7 @@ export async function startProxyServer(proxyConfigPath, localYarnConfigPath, glo
|
|
|
411
411
|
const connectionHandler = (socket) => {
|
|
412
412
|
socket.setTimeout(60000);
|
|
413
413
|
socket.setKeepAlive(true, 30000);
|
|
414
|
-
logger.
|
|
414
|
+
logger.debug(() => "Server on connection");
|
|
415
415
|
};
|
|
416
416
|
server.on('error', errHandler /*this handler will call 'reject'*/);
|
|
417
417
|
server.on('connection', connectionHandler);
|