We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 040d6cf commit 925c5abCopy full SHA for 925c5ab
control/src/main/kotlin/spp/probe/SourceProbe.kt
@@ -166,7 +166,7 @@ object SourceProbe {
166
if (connected.get()) return
167
val options = NetClientOptions()
168
.setReconnectAttempts(Int.MAX_VALUE).setReconnectInterval(5000)
169
- .setSsl(System.getenv("SPP_DISABLE_TLS") != "true")
+ .setSsl(!ProbeConfiguration.spp.getBoolean("disable_tls", System.getenv("SPP_DISABLE_TLS") == "true"))
170
.setTrustAll(!ProbeConfiguration.spp.getBoolean("verify_host", true))
171
.apply {
172
if (ProbeConfiguration.getString("platform_certificate") != null) {
0 commit comments