Switch back to Reactor 3.0 snapshots

This commit is contained in:
Rossen Stoyanchev
2016-08-08 15:52:16 -04:00
parent 526ce28ef0
commit cc288a0c4a
4 changed files with 8 additions and 6 deletions

View File

@@ -138,8 +138,9 @@ public class InvocableHandlerMethod extends HandlerMethod {
})
.collect(Collectors.toList());
return Mono.when(monos).log("reactor.unresolved").map(args ->
Stream.of(args).map(o -> o != NO_VALUE ? o : null).toArray());
// Create Mono with array of resolved values...
return Mono.when(monos,
args -> Stream.of(args).map(o -> o != NO_VALUE ? o : null).toArray());
}
catch (Throwable ex) {
return Mono.error(ex);