Showing 1 of 1 files from the diff.
@@ -333,7 +333,9 @@
Loading
333 | 333 | this._timeoutStartSubscriptionAck.call(this, subscriptionId); |
|
334 | 334 | }, START_ACK_TIMEOUT), |
|
335 | 335 | }); |
|
336 | - | this.awsRealTimeSocket.send(stringToAWSRealTime); |
|
336 | + | if (this.awsRealTimeSocket) { |
|
337 | + | this.awsRealTimeSocket.send(stringToAWSRealTime); |
|
338 | + | } |
|
337 | 339 | } |
|
338 | 340 | ||
339 | 341 | // Waiting that subscription has been connected before trying to unsubscribe |
@@ -615,8 +617,6 @@
Loading
615 | 617 | } |
|
616 | 618 | this.awsRealTimeSocket = null; |
|
617 | 619 | this.socketStatus = SOCKET_STATUS.CLOSED; |
|
618 | - | ||
619 | - | throw err; |
|
620 | 620 | } |
|
621 | 621 | } |
|
622 | 622 | }); |
Files | Coverage |
---|---|
packages | 73.14% |
Project Totals (213 files) | 73.14% |
Sunburst
The inner-most circle is the entire project, moving away from the center are folders then, finally, a single file.
The size and color of each slice is representing the number of statements and the coverage, respectively.
Icicle
The top section represents the entire project. Proceeding with folders and finally individual files.
The size and color of each slice is representing the number of statements and the coverage, respectively.