File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
src/main/kotlin/com/coder/gateway/views/steps Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ import com.intellij.openapi.util.Disposer
28
28
import com.intellij.openapi.wm.impl.welcomeScreen.WelcomeScreenUIManager
29
29
import com.intellij.remote.AuthType
30
30
import com.intellij.remote.RemoteCredentialsHolder
31
+ import com.intellij.ssh.SshException
31
32
import com.intellij.ui.AnimatedIcon
32
33
import com.intellij.ui.ColoredListCellRenderer
33
34
import com.intellij.ui.DocumentAdapter
@@ -199,7 +200,8 @@ class CoderLocateRemoteProjectStepView(private val setNextButtonEnabled: (Boolea
199
200
// Throw to retry these. The main one is
200
201
// DeployException which fires when dd times out.
201
202
is ConnectionException , is TimeoutException ,
202
- is SSHException , is DeployException -> throw e
203
+ is SSHException , is SshException ,
204
+ is DeployException -> throw e
203
205
else -> {
204
206
withContext(Dispatchers .Main ) {
205
207
logger.error(" Failed to retrieve IDEs (attempt $attempt )" , e)
You can’t perform that action at this time.
0 commit comments