Handle EEXIST error when starting the server

Reviewed By: @cpojer

Differential Revision: D2426373
This commit is contained in:
Amjad Masad 2015-09-09 16:06:13 -07:00 committed by facebook-github-bot-7
parent 3ee65225be
commit 3cfac35fd8
1 changed files with 1 additions and 1 deletions

View File

@ -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' });