Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed: monitors are not registered with servo #179

Merged
merged 3 commits into from
Jul 9, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,29 @@
# RxNetty Releases #


### Version 0.3.9 ###

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

* [Pull 179] (https://github.com/Netflix/RxNetty/issues/179) Monitors were not getting registered with servo

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

### Version 0.3.8 ###

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

* [Issue 150] (https://github.com/Netflix/RxNetty/issues/150) Removed deprecated PoolStats.
* [Issue 169] (https://github.com/Netflix/RxNetty/issues/169) Removed ContentSource in favor of Observable for HttpClientRequest
* [Issue 172] (https://github.com/Netflix/RxNetty/issues/172) Missing connection pool events from client built by RxContexts constructs
* [Issue 175] (https://github.com/Netflix/RxNetty/issues/175) Optionally disable System time calls for metrics
* [Issue 177] (https://github.com/Netflix/RxNetty/issues/177) For HTTP server use channelReadComplete() to flush writes

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

### Version 0.3.7 ###

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

* [Issue 98] (https://github.com/Netflix/RxNetty/issues/98) Added pluggable metrics infrastructure with rx-netty-servo implementation.
* [Issue 106] (https://github.com/Netflix/RxNetty/issues/106) Added TLS support for TCP & HTTP (HTTPS)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public void onCompleted(Object monitor) {
}

public void onSubscribe(Object monitor) {
if (subscriptionCount.incrementAndGet() == 0) {
if (subscriptionCount.getAndIncrement() == 0) {
ServoUtils.registerObject(monitorId, monitor);
}
}
Expand Down