Skip to content

Commit fc691fd

Browse files
Return disconnect response in 500ms (#322)
Signed-off-by: Jinbo Wang <[email protected]>
1 parent 58d0277 commit fc691fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

com.microsoft.java.debug.core/src/main/java/com/microsoft/java/debug/core/adapter/handler/AbstractDisconnectRequestHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ private void destroyLaunchFiles(IDebugAdapterContext context) {
9191
}
9292

9393
try {
94-
TimeUnit.SECONDS.sleep(1);
94+
TimeUnit.MILLISECONDS.sleep(100);
9595
} catch (InterruptedException e) {
9696
// do nothing.
9797
}

0 commit comments

Comments
 (0)