Clients stream should be sequentially concated (#187)

* Clients stream should be sequentially concated
* remove debug log
This commit is contained in:
a10zn8
2023-03-28 21:28:22 +04:00
committed by GitHub
parent bdcb7386cd
commit 8a2455fcd1
2 changed files with 1 additions and 2 deletions

View File

@@ -61,7 +61,6 @@ abstract class HeadLagObserver(
.sample(throttling) .sample(throttling)
.flatMap(this::probeFollowers) .flatMap(this::probeFollowers)
.map { item -> .map { item ->
log.debug("Set to ${item.t2.getId()} lag = ${item.t1}")
item.t2.setLag(item.t1) item.t2.setLag(item.t1)
} }
} }

View File

@@ -76,7 +76,7 @@ class GrpcHead(
.repeat() .repeat()
.delayElements(Duration.ofSeconds(1)) .delayElements(Duration.ofSeconds(1))
) )
.flatMap { it.subscribeHead(chainRef) } .concatMap({ it.subscribeHead(chainRef) }, 0)
.doOnNext { .doOnNext {
headsCounter.increment() headsCounter.increment()
} }