Skip to content

Commit 2244bd6

Browse files
committed
Merge pull request #197 from NiteshKant/master
Fixes #195
2 parents b1e1c9f + 605e386 commit 2244bd6

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

CHANGES.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# RxNetty Releases #
22

3+
### Version 0.3.11 ###
4+
5+
[Milestone](https://github.com/Netflix/RxNetty/issues?milestone=9&state=closed)
6+
7+
* [Issue 195] (https://github.com/Netflix/RxNetty/issues/195) RxClientImpl.shutdown() should not shutdown the eventloop.
8+
9+
Artifacts: [Maven Central](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.netflix.rxnetty%22%20AND%20v%3A%220.3.11%22)
10+
311
### Version 0.3.10 ###
412

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

rx-netty/src/main/java/io/reactivex/netty/client/RxClientImpl.java

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -169,12 +169,8 @@ public void shutdown() {
169169
return;
170170
}
171171

172-
try {
173-
if (null != pool) {
174-
pool.shutdown();
175-
}
176-
} finally {
177-
clientBootstrap.group().shutdownGracefully();
172+
if (null != pool) {
173+
pool.shutdown();
178174
}
179175
}
180176

0 commit comments

Comments
 (0)