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 parent3ee1a22 commit4155b13Copy full SHA for 4155b13
src/main/kotlin/com/coder/gateway/cli/CoderCLIManager.kt
@@ -287,15 +287,20 @@ class CoderCLIManager(
287
UserKnownHostsFile /dev/null
288
LogLevel ERROR
289
SetEnv CODER_SSH_SESSION_TYPE=JetBrains
290
- Host${getBackgroundHostName(deploymentURL, it)}
291
- ProxyCommand CODER_SSH_USAGE_APP=disable${proxyArgs.joinToString("")}$it
292
- ConnectTimeout 0
293
- StrictHostKeyChecking no
294
- UserKnownHostsFile /dev/null
295
- LogLevel ERROR
296
- SetEnv CODER_SSH_SESSION_TYPE=JetBrains
297
""".trimIndent()
298
.plus(extraConfig)
+ .plus(
+"""
+ Host${getBackgroundHostName(deploymentURL, it)}
+ ProxyCommand CODER_SSH_USAGE_APP=disable${proxyArgs.joinToString("")}$it
+ ConnectTimeout 0
+ StrictHostKeyChecking no
+ UserKnownHostsFile /dev/null
299
+ LogLevel ERROR
300
+ SetEnv CODER_SSH_SESSION_TYPE=JetBrains
301
+""".trimIndent()
302
+ .plus(extraConfig)
303
+ )
304
.replace("\n",System.lineSeparator())
305
},
306
)