File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed
Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -472,15 +472,15 @@ export class WebSocketConnector {
472472 }
473473
474474 return new Promise ( ( resolve , reject ) => {
475- if ( ! this . _wsConn || this . _wsConn . readyState !== w3cwebsocket . OPEN ) {
476- reject (
477- new WebSocketQueryError (
478- ErrorCode . ERR_WEBSOCKET_CONNECTION_FAIL ,
479- `WebSocket connection is not ready, status: ${ this . _wsConn ?. readyState } `
480- )
481- ) ;
482- return ;
483- }
475+ // if (!this._wsConn || this._wsConn.readyState !== w3cwebsocket.OPEN) {
476+ // reject(
477+ // new WebSocketQueryError(
478+ // ErrorCode.ERR_WEBSOCKET_CONNECTION_FAIL,
479+ // `WebSocket connection is not ready, status: ${this._wsConn?.readyState}`
480+ // )
481+ // );
482+ // return;
483+ // }
484484
485485 const reqId = this . extractReqId ( msg ?. args ?. req_id ) ;
486486 const retriable = this . isRetriableAction ( msg . action ) ;
You can’t perform that action at this time.
0 commit comments