File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -209,7 +209,7 @@ class ConnectionForward extends Connection {
209209 await Promise . race ( [
210210 Promise . all ( [ readyP , secureConnectP ] ) ,
211211 errorP ,
212- abortedP ,
212+ // abortedP,
213213 ] ) ;
214214 } catch ( e ) {
215215 // Clean up partial start
Original file line number Diff line number Diff line change @@ -176,7 +176,7 @@ class ConnectionReverse extends Connection {
176176 this . serverSocket . on ( 'close' , this . handleClose ) ;
177177 let punchInterval ;
178178 try {
179- await Promise . race ( [ socketP , errorP , abortedP ] ) ;
179+ await Promise . race ( [ socketP , errorP , /* abortedP*/ ] ) ;
180180 // Send punch & ready signal
181181 // if (this.port !== 1314) {
182182 // console.log(
@@ -198,7 +198,7 @@ class ConnectionReverse extends Connection {
198198 // }
199199 await this . send ( networkUtils . pingBuffer ) ;
200200 } , this . punchIntervalTime ) ;
201- await Promise . race ( [ readyP , errorP , abortedP ] ) ;
201+ await Promise . race ( [ readyP , errorP , /* abortedP*/ ] ) ;
202202 } catch ( e ) {
203203 this . logger . info ( `Failed to start Connection Reverse: ${ e . message } ` ) ;
204204 // Clean up partial start
You can’t perform that action at this time.
0 commit comments