Handle EEXIST error when starting the server
Reviewed By: @cpojer Differential Revision: D2426373
This commit is contained in:
parent
3ee65225be
commit
3cfac35fd8
|
@ -148,7 +148,7 @@ class SocketServer {
|
|||
process.send({ type: 'createdServer' });
|
||||
},
|
||||
error => {
|
||||
if (error.code === 'EADDRINUSE') {
|
||||
if (error.code === 'EADDRINUSE' || error.code === 'EEXIST') {
|
||||
// Server already listening, this may happen if multiple
|
||||
// clients where started in quick succussion (buck).
|
||||
process.send({ type: 'createdServer' });
|
||||
|
|
Loading…
Reference in New Issue