()
| 208 | } |
| 209 | |
| 210 | markSocketInitialized() { |
| 211 | this.props.dispatch({ |
| 212 | type: updateConnectionStatusActionType, |
| 213 | payload: { status: 'connected', keyserverID: this.props.keyserverID }, |
| 214 | }); |
| 215 | this.resetPing(); |
| 216 | } |
| 217 | |
| 218 | closeSocket( |
| 219 | // This param is a hack. When closing a socket there is a race between this |
no test coverage detected