We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent9da79c7 commit0ef1fb8Copy full SHA for 0ef1fb8
src/main/kotlin/com/coder/gateway/cli/CoderCLIManager.kt
@@ -285,15 +285,20 @@ class CoderCLIManager(
285
UserKnownHostsFile /dev/null
286
LogLevel ERROR
287
SetEnv CODER_SSH_SESSION_TYPE=JetBrains
288
- Host${getBackgroundHostName(deploymentURL, it)}
289
- ProxyCommand CODER_SSH_USAGE_APP=disable${proxyArgs.joinToString("")}$it
290
- ConnectTimeout 0
291
- StrictHostKeyChecking no
292
- UserKnownHostsFile /dev/null
293
- LogLevel ERROR
294
- SetEnv CODER_SSH_SESSION_TYPE=JetBrains
295
""".trimIndent()
296
.plus(extraConfig)
+ .plus(
+"""
+ Host${getBackgroundHostName(deploymentURL, it)}
+ ProxyCommand CODER_SSH_USAGE_APP=disable${proxyArgs.joinToString("")}$it
+ ConnectTimeout 0
+ StrictHostKeyChecking no
+ UserKnownHostsFile /dev/null
297
+ LogLevel ERROR
298
+ SetEnv CODER_SSH_SESSION_TYPE=JetBrains
299
+""".trimIndent()
300
+ .plus(extraConfig)
301
+ )
302
.replace("\n",System.lineSeparator())
303
},
304
)