File tree Expand file tree Collapse file tree 2 files changed +22
-2
lines changed
rx-netty-servo/src/main/java/io/reactivex/netty/servo Expand file tree Collapse file tree 2 files changed +22
-2
lines changed Original file line number Diff line number Diff line change 1
1
# RxNetty Releases #
2
2
3
3
4
+ ### Version 0.3.9 ###
5
+
6
+ [ Milestone] ( https://github.com/Netflix/RxNetty/issues?milestone=7&state=closed )
7
+
8
+ * [ Pull 179] (https://github.com/Netflix/RxNetty/issues/179 ) Monitors were not getting registered with servo
9
+
10
+ Artifacts: [ Maven Central] ( http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.netflix.rxnetty%22%20AND%20v%3A%220.3.9%22 )
11
+
12
+ ### Version 0.3.8 ###
13
+
14
+ [ Milestone] ( https://github.com/Netflix/RxNetty/issues?milestone=5&state=closed )
15
+
16
+ * [ Issue 150] (https://github.com/Netflix/RxNetty/issues/150 ) Removed deprecated PoolStats.
17
+ * [ Issue 169] (https://github.com/Netflix/RxNetty/issues/169 ) Removed ContentSource in favor of Observable for HttpClientRequest
18
+ * [ Issue 172] (https://github.com/Netflix/RxNetty/issues/172 ) Missing connection pool events from client built by RxContexts constructs
19
+ * [ Issue 175] (https://github.com/Netflix/RxNetty/issues/175 ) Optionally disable System time calls for metrics
20
+ * [ Issue 177] (https://github.com/Netflix/RxNetty/issues/177 ) For HTTP server use channelReadComplete() to flush writes
21
+
22
+ Artifacts: [ Maven Central] ( http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.netflix.rxnetty%22%20AND%20v%3A%220.3.8%22 )
23
+
4
24
### Version 0.3.7 ###
5
25
6
- [ Milestone] ( https://github.com/Netflix/RxNetty/issues?milestone=2 &state=closed )
26
+ [ Milestone] ( https://github.com/Netflix/RxNetty/issues?milestone=4 &state=closed )
7
27
8
28
* [ Issue 98] (https://github.com/Netflix/RxNetty/issues/98 ) Added pluggable metrics infrastructure with rx-netty-servo implementation.
9
29
* [ Issue 106] (https://github.com/Netflix/RxNetty/issues/106 ) Added TLS support for TCP & HTTP (HTTPS)
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ public void onCompleted(Object monitor) {
43
43
}
44
44
45
45
public void onSubscribe (Object monitor ) {
46
- if (subscriptionCount .incrementAndGet () == 0 ) {
46
+ if (subscriptionCount .getAndIncrement () == 0 ) {
47
47
ServoUtils .registerObject (monitorId , monitor );
48
48
}
49
49
}
You can’t perform that action at this time.
0 commit comments