File tree Expand file tree Collapse file tree 1 file changed +12
-7
lines changed
src/main/kotlin/com/coder/gateway/cli Expand file tree Collapse file tree 1 file changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -287,15 +287,20 @@ class CoderCLIManager(
287287 UserKnownHostsFile /dev/null
288288 LogLevel ERROR
289289 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
297290 """ .trimIndent()
298291 .plus(extraConfig)
292+ .plus(
293+ """
294+ Host ${getBackgroundHostName(deploymentURL, it)}
295+ ProxyCommand CODER_SSH_USAGE_APP=disable ${proxyArgs.joinToString(" " )} $it
296+ ConnectTimeout 0
297+ StrictHostKeyChecking no
298+ UserKnownHostsFile /dev/null
299+ LogLevel ERROR
300+ SetEnv CODER_SSH_SESSION_TYPE=JetBrains
301+ """ .trimIndent()
302+ .plus(extraConfig)
303+ )
299304 .replace(" \n " , System .lineSeparator())
300305 },
301306 )
You can’t perform that action at this time.
0 commit comments