Skip to content

Commit

Permalink
Enable forced direct connection for devmole and stagemole builds
Browse files Browse the repository at this point in the history
This commit enables forced API direct connection as well as disables
API address caching to improve testing against the devmole and
stagemole environments.
  • Loading branch information
albin-mullvad committed Nov 27, 2023
1 parent 851b134 commit 6a29e19
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ const val CUSTOM_ENDPOINT_HTTPS_PORT = 443
data class CustomApiEndpointConfiguration(
val hostname: String,
val port: Int,
val disableAddressCache: Boolean = false,
val disableAddressCache: Boolean = true,
val disableTls: Boolean = false,
val forceDirectConnection: Boolean = false
val forceDirectConnection: Boolean = true
) : ApiEndpointConfiguration {
override fun apiEndpoint() =
ApiEndpoint(
Expand Down

0 comments on commit 6a29e19

Please sign in to comment.