Skip to content

Commit

Permalink
PRs from #64
Browse files Browse the repository at this point in the history
  • Loading branch information
tomaslin committed Feb 4, 2016
2 parents a0841f0 + e205888 commit 082fb39
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ public void processEvent(Event event) {
return;
}

val buildEvent = objectMapper.convertValue(event, BuildEvent.class);
Observable.from(Collections.singletonList(buildEvent))
BuildEvent buildEvent = objectMapper.convertValue(event, BuildEvent.class);
Observable.just(buildEvent)
.doOnNext(this::onEchoResponse)
.subscribe(triggerEachMatchFrom(pipelineCache.getPipelines()));
}
Expand Down

0 comments on commit 082fb39

Please sign in to comment.