File tree Expand file tree Collapse file tree 2 files changed +10
-6
lines changed
rx-netty/src/main/java/io/reactivex/netty/client Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 1
1
# RxNetty Releases #
2
2
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
+
3
11
### Version 0.3.10 ###
4
12
5
13
[ Milestone] ( https://github.com/Netflix/RxNetty/issues?milestone=8&state=closed )
Original file line number Diff line number Diff line change @@ -169,12 +169,8 @@ public void shutdown() {
169
169
return ;
170
170
}
171
171
172
- try {
173
- if (null != pool ) {
174
- pool .shutdown ();
175
- }
176
- } finally {
177
- clientBootstrap .group ().shutdownGracefully ();
172
+ if (null != pool ) {
173
+ pool .shutdown ();
178
174
}
179
175
}
180
176
You can’t perform that action at this time.
0 commit comments