Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
antoinegomez authored and Antoine Gomez committed Jun 11, 2018
1 parent c67bbbe commit 95950bd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
6 changes: 6 additions & 0 deletions README.md
Expand Up @@ -453,6 +453,12 @@ To set up your development environment:
[Back to top](#table-of-contents)

## Change History
* v1.4.2 (2018-06-11)
* Do not retry to connect if closing server
* v1.4.1 (2018-05-31)
* Fix channel creation after reconnection
* v1.4.0 (2018-04-24)
* Refactor channel management to handle connection errors
* v1.3.0 (2018-03-27)
* Add shutdown (SIGTERM/SIGINT) support
* v1.2.3 (2018-02-05)
Expand Down
5 changes: 1 addition & 4 deletions src/module/managers/connection-manager.ts
Expand Up @@ -108,11 +108,8 @@ export class ConnectionManager extends EventEmitter {
return Observable.of(null);
}

/* istanbul ignore next */
if (this._closingServer) {
return Observable.of(null);
}

this._closingServer = false;
this._isConnecting = true;

debug('Connecting', this._uri);
Expand Down

0 comments on commit 95950bd

Please sign in to comment.