From 2400c0f21eaa70f299ff4c5a8e0a3e7bf6dcad76 Mon Sep 17 00:00:00 2001 From: David Rousselie Date: Mon, 8 Feb 2016 17:22:32 +0100 Subject: [PATCH] Disable UDP socket sharing as it crash nodejs See https://github.com/nodejs/node-v0.x-archive/issues/9261 --- lib/dgram.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/dgram.js b/lib/dgram.js index 764892a90bc..fe9f763b84f 100644 --- a/lib/dgram.js +++ b/lib/dgram.js @@ -195,7 +195,7 @@ Socket.prototype.bind = function(port /*, address, callback*/) { if (!cluster) cluster = require('cluster'); - if (cluster.isWorker && !exclusive) { + if (cluster.isWorker && !exclusive && false) { cluster._getServer(self, ip, port, self.type, -1, function(err, handle) { if (err) { self.emit('error', errnoException(err, 'bind'));