File tree 1 file changed +2
-1
lines changed
src/main/kotlin/com/coder/gateway
1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ import com.jetbrains.gateway.ssh.SshDeployFlowUtil
31
31
import com.jetbrains.gateway.ssh.SshMultistagePanelContext
32
32
import com.jetbrains.gateway.ssh.deploy.DeployException
33
33
import com.jetbrains.rd.util.lifetime.LifetimeDefinition
34
+ import kotlinx.coroutines.GlobalScope
34
35
import kotlinx.coroutines.launch
35
36
import net.schmizz.sshj.common.SSHException
36
37
import net.schmizz.sshj.connection.ConnectionException
@@ -78,7 +79,7 @@ class CoderRemoteConnectionHandle {
78
79
indicator.text = CoderGatewayBundle .message(" gateway.connector.coder.connecting.failed.retry" , humanizeDuration(remainingMs))
79
80
},
80
81
)
81
- launch {
82
+ GlobalScope . launch {
82
83
logger.info(" Deploying and starting IDE with $context " )
83
84
// At this point JetBrains takes over with their own UI.
84
85
@Suppress(" UnstableApiUsage" ) SshDeployFlowUtil .fullDeployCycle(
You can’t perform that action at this time.
0 commit comments