Fix no-str subscribe implementation (#466)

Co-authored-by: Mike Sizov <mikhail.sizov@p2p.org>
This commit is contained in:
msizov
2024-05-07 01:25:32 +07:00
committed by GitHub
parent 258507de4d
commit 5f62838e38

View File

@@ -119,7 +119,7 @@ open class NativeSubscribe(
} }
} }
open fun subscribe(chain: Chain, method: String, params: Any?, matcher: Selector.Matcher): Flux<out Any> = open fun subscribe(chain: Chain, method: String, params: Any?, matcher: Selector.Matcher): Flux<out Any> =
subscribe(chain, method, params, matcher) subscribe(chain, method, params, matcher, "")
open fun subscribe(chain: Chain, method: String, params: Any?, matcher: Selector.Matcher, subscriptionId: String): Flux<out Any> = open fun subscribe(chain: Chain, method: String, params: Any?, matcher: Selector.Matcher, subscriptionId: String): Flux<out Any> =
getUpstream(chain).getEgressSubscription() getUpstream(chain).getEgressSubscription()