Skip to content

Commit

Permalink
Fixed Microservices.CompositeServiceDiscovery.start0
Browse files Browse the repository at this point in the history
  • Loading branch information
artem-v committed Apr 12, 2021
1 parent 06fa7e5 commit b318b7a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -650,7 +650,7 @@ private Mono<? extends Void> start0(String id, ServiceDiscovery discovery) {
.subscribeOn(scheduler)
.publishOn(scheduler)
.doOnNext(event -> onDiscoveryEvent(microservices, event))
.doOnNext(sink::tryEmitNext)
.doOnNext(event -> sink.emitNext(event, RetryEmitFailureHandler.INSTANCE))
.subscribe());

return Mono.deferContextual(context -> discovery.start())
Expand Down

0 comments on commit b318b7a

Please sign in to comment.