Skip to content

Commit

Permalink
Fixes #199
Browse files Browse the repository at this point in the history
Wrong metric event was being used.
  • Loading branch information
Nitesh Kant committed Aug 20, 2014
1 parent 7b57bae commit 5d94327
Showing 1 changed file with 1 addition and 1 deletion.
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 5d94327

Please sign in to comment.