Skip to content

Commit 0ef1fb8

Browse files
committed
try test fix
1 parent 9da79c7 commit 0ef1fb8

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

src/main/kotlin/com/coder/gateway/cli/CoderCLIManager.kt

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -285,15 +285,20 @@ class CoderCLIManager(
285285
UserKnownHostsFile /dev/null
286286
LogLevel ERROR
287287
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
295288
""".trimIndent()
296289
.plus(extraConfig)
290+
.plus(
291+
"""
292+
Host ${getBackgroundHostName(deploymentURL, it)}
293+
ProxyCommand CODER_SSH_USAGE_APP=disable ${proxyArgs.joinToString(" ")} $it
294+
ConnectTimeout 0
295+
StrictHostKeyChecking no
296+
UserKnownHostsFile /dev/null
297+
LogLevel ERROR
298+
SetEnv CODER_SSH_SESSION_TYPE=JetBrains
299+
""".trimIndent()
300+
.plus(extraConfig)
301+
)
297302
.replace("\n", System.lineSeparator())
298303
},
299304
)

0 commit comments

Comments
 (0)