mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
Switch debugger reader's sleeping policy to BLOCKING (PY-15122)
Because of changes in BaseOutputReader we can't call readAvailableBlocking if sleeping policy is not BLOCKING.
This commit is contained in:
@@ -488,7 +488,7 @@ public class RemoteDebugger implements ProcessDebugger {
|
||||
private StringBuilder myTextBuilder = new StringBuilder();
|
||||
|
||||
private DebuggerReader(final InputStream stream) throws IOException {
|
||||
super(stream, CharsetToolkit.UTF8_CHARSET); //TODO: correct encoding?
|
||||
super(stream, CharsetToolkit.UTF8_CHARSET, SleepingPolicy.BLOCKING); //TODO: correct encoding?
|
||||
start();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user