Skip to content

Commit

Permalink
Disable UDP socket sharing as it crash nodejs
Browse files Browse the repository at this point in the history
  • Loading branch information
David Rousselie committed Feb 8, 2016
1 parent ffc1395 commit 2400c0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/dgram.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'));
Expand Down

0 comments on commit 2400c0f

Please sign in to comment.