mirror of
https://github.com/status-im/react-native.git
synced 2025-01-27 09:45:04 +00:00
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…
x
Reference in New Issue
Block a user