Skip to content

Commit 6c6a8dc

Browse files
authored
[jb-gw] enable reading of ssh config (#18389)
to allow user customizations of connectivity, i.e. proxy jumps, see EXP-279
1 parent b3aacfb commit 6c6a8dc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

components/ide/jetbrains/gateway-plugin/src/main/kotlin/io/gitpod/jetbrains/gateway/GitpodConnectionProvider.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,9 @@ class GitpodConnectionProvider : GatewayConnectionProvider {
338338
null,
339339
ProgressManager.getGlobalProgressIndicator(),
340340
false
341-
).withSshConnectionConfig {
341+
)
342+
.withParsingOpenSSHConfig(true)
343+
.withSshConnectionConfig {
342344
val hostKeyVerifier = it.hostKeyVerifier
343345
if (hostKeyVerifier is OpenSshLikeHostKeyVerifier) {
344346
val acceptHostKey = acceptHostKey(ideUrl, hostKeys)

0 commit comments

Comments
 (0)