Skip to content

Commit

Permalink
Use default ConsolidationMode in Session.get (#186)
Browse files Browse the repository at this point in the history
  • Loading branch information
oteffahi authored Sep 2, 2024
1 parent 1d07f1d commit a509cbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zenoh-kotlin/src/commonMain/kotlin/io/zenoh/Session.kt
Original file line number Diff line number Diff line change
Expand Up @@ -687,7 +687,7 @@ class Session private constructor(private val config: Config) : AutoCloseable {
attachment: ZBytes? = null,
timeout: Duration = Duration.ofMillis(10000),
target: QueryTarget = QueryTarget.BEST_MATCHING,
consolidation: ConsolidationMode = ConsolidationMode.NONE,
consolidation: ConsolidationMode = ConsolidationMode.default(),
onClose: (() -> Unit)? = null
): Result<Channel<Reply>> {
val channelHandler = ChannelHandler(channel)
Expand Down

0 comments on commit a509cbf

Please sign in to comment.