Skip to content

Commit

Permalink
Fix no-str subscribe implementation (#466)
Browse files Browse the repository at this point in the history
Co-authored-by: Mike Sizov <[email protected]>
  • Loading branch information
msizov and Mike Sizov authored May 6, 2024
1 parent 258507d commit 5f62838
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ open class NativeSubscribe(
}
}
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> =
getUpstream(chain).getEgressSubscription()
Expand Down

0 comments on commit 5f62838

Please sign in to comment.