Skip to content

Commit

Permalink
Merge pull request #212 from NiteshKant/master
Browse files Browse the repository at this point in the history
Fixes #199
  • Loading branch information
NiteshKant committed Aug 20, 2014
2 parents 5960ceb + f1c90a8 commit e24b21d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# RxNetty Releases #

### Version 0.3.12 ###

[Milestone](https://github.com/ReactiveX/RxNetty/issues?q=milestone%3A0.3.12+is%3Aclosed)

* [Issue 118] (https://github.com/Netflix/RxNetty/issues/118) Javadoc errors when compiling with Java 8.
* [Pull 196] (https://github.com/Netflix/RxNetty/pull/196) Websocket client and server implementation.
* [Pull 204] (https://github.com/Netflix/RxNetty/pull/204) Add a generic Handler interface
* [Issue 206] (https://github.com/Netflix/RxNetty/issue/206) HttpClientResponse.getContent() will loose data if not eagerly subscribed.
* [Issue 199] (https://github.com/Netflix/RxNetty/issue/199) Invalid metric event used in DefaultChannelWriter.

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

### Version 0.3.11 ###

[Milestone](https://github.com/Netflix/RxNetty/issues?milestone=9&state=closed)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public void call() {
.doOnError(new Action1<Throwable>() {
@Override
public void call(Throwable throwable) {
eventsSubject.onEvent(metricEventProvider.getFlushSuccessEvent(),
eventsSubject.onEvent(metricEventProvider.getFlushFailedEvent(),
Clock.onEndMillis(startTimeMillis), throwable);
}
});
Expand Down

0 comments on commit e24b21d

Please sign in to comment.