Skip to content

Commit

Permalink
Merge pull request #197 from NiteshKant/master
Browse files Browse the repository at this point in the history
Fixes #195
  • Loading branch information
NiteshKant committed Aug 1, 2014
2 parents b1e1c9f + 605e386 commit 2244bd6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
8 changes: 8 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# RxNetty Releases #

### Version 0.3.11 ###

[Milestone](https://github.com/Netflix/RxNetty/issues?milestone=9&state=closed)

* [Issue 195] (https://github.com/Netflix/RxNetty/issues/195) RxClientImpl.shutdown() should not shutdown the eventloop.

Artifacts: [Maven Central](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.netflix.rxnetty%22%20AND%20v%3A%220.3.11%22)

### Version 0.3.10 ###

[Milestone](https://github.com/Netflix/RxNetty/issues?milestone=8&state=closed)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -169,12 +169,8 @@ public void shutdown() {
return;
}

try {
if (null != pool) {
pool.shutdown();
}
} finally {
clientBootstrap.group().shutdownGracefully();
if (null != pool) {
pool.shutdown();
}
}

Expand Down

0 comments on commit 2244bd6

Please sign in to comment.