mirror of
https://github.com/status-im/react-native.git
synced 2025-02-21 21:58:18 +00:00
Don't reconnect inspector if connection refused (#22625)
Summary: (Together with a pr to react-devtools) Fixes https://github.com/facebook/react-native/issues/21030 [iOS] [Fixed] - Fix infinite retry loop of inspector Pull Request resolved: https://github.com/facebook/react-native/pull/22625 Differential Revision: D14169392 Pulled By: hramos fbshipit-source-id: 2e301fd9d458598b62399fc61a9859ad29928483
This commit is contained in:
parent
52e51368eb
commit
f9097017de
@ -201,7 +201,7 @@ RCT_NOT_IMPLEMENTED(- (instancetype)init)
|
||||
[self abort:@"Websocket exception"
|
||||
withCause:error];
|
||||
}
|
||||
if (!_closed) {
|
||||
if (!_closed && [error code] != ECONNREFUSED) {
|
||||
[self reconnect];
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user