problem: doesn't get head updates from all available heads

solution: ensure all heads are started on multihead start
rel: #67
This commit is contained in:
Igor Artamonov
2021-03-27 15:16:58 -04:00
parent a26cc96ba6
commit 3ae5203d98
5 changed files with 98 additions and 1 deletions

View File

@@ -33,11 +33,18 @@ class MergedHead(
}
override fun start() {
sources.forEach { head ->
if (head is Lifecycle && !head.isRunning) {
head.start()
}
}
subscription?.dispose()
subscription = super.follow(Flux.merge(sources.map { it.getFlux() }))
}
override fun stop() {
subscription?.dispose()
subscription = null
}
override fun setCaches(caches: Caches) {

View File

@@ -91,7 +91,8 @@ open class EthereumMultistream(
upstream.setLag(0)
upstream.getHead()
} else {
val newHead = MergedHead(upstreams.map { it.getHead() }).apply {
val heads = upstreams.map { it.getHead() }
val newHead = MergedHead(heads).apply {
this.start()
}
val lagObserver = EthereumHeadLagObserver(newHead, upstreams as Collection<Upstream>).apply {

View File

@@ -33,6 +33,7 @@ class EthereumWsHead(
}
override fun start() {
this.subscription?.dispose()
this.subscription = super.follow(ws.getFlux())
}