Skip to content

Commit

Permalink
More PR feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Melchior committed Nov 28, 2023
1 parent 93f09e3 commit 7825935
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public interface AppConfiguration {
public val httpLogObfuscator: HttpLogObfuscator?

/**
* If enabled (the default), a single connection is used for all Realms opened
* If enabled, a single connection is used for all Realms opened
* with a single sync user. If disabled, a separate connection is used for each
* Realm.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ import kotlin.time.Duration
/**
* The configured timeouts for various aspects of the sync connection between synchronized realms
* and App Services.
*
* @see [io.realm.kotlin.mongodb.AppConfiguration.Builder.syncTimeouts]
*/
public data class SyncTimeoutOptions(

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -499,9 +499,9 @@ class AppConfigurationTests {
@Test
fun multiplexing() {
val config = AppConfiguration.Builder("foo")
.enableSessionMultiplexing(false)
.enableSessionMultiplexing(true)
.build()
assertFalse(config.enableSessionMultiplexing)
assertTrue(config.enableSessionMultiplexing)
}

@Test
Expand Down

0 comments on commit 7825935

Please sign in to comment.