Skip to content

Commit 4155b13

Browse files
committed
try test fix
1 parent 3ee1a22 commit 4155b13

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
@@ -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
)

0 commit comments

Comments
 (0)