We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6230348 commit 26c655dCopy full SHA for 26c655d
adapter/src/main/kotlin/org/javacs/ktda/adapter/KotlinDebugAdapter.kt
@@ -181,9 +181,8 @@ class KotlinDebugAdapter(
181
LOG.info("Sent exit event")
182
}
183
184
- override fun attach(args: Map<String, Any>) = async.execute {
185
- // Fix a deadlock problem by commenting the following line.
186
- //performInitialization()
+ override fun attach(args: Map<String, Any>) = launcherAsync.execute {
+ performInitialization()
187
188
val projectRoot = (args["projectRoot"] as? String)?.let { Paths.get(it) }
189
?: throw missingRequestArgument("launch", "projectRoot")
0 commit comments