debugger: remove obsolete setTimeout
Remove obsolete `setTimeout()` introduced in3148f1400
. The fix for the problem is inb266074347
. (For the record, I mostly don't know what I'm talking about here but am summarizing from an IRC #node-dev conversation with @indutny on 04-Jun-2016.) PR-URL: https://github.com/nodejs/node/pull/7154 Reviewed-By: Fedor Indutny <fedor@indutny.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
This commit is contained in:
Родитель
e0b8dd59bc
Коммит
671cffa313
|
@ -829,13 +829,7 @@ function Interface(stdin, stdout, args) {
|
|||
// Run script automatically
|
||||
this.pause();
|
||||
|
||||
// XXX Need to figure out why we need this delay
|
||||
setTimeout(function() {
|
||||
|
||||
self.run(function() {
|
||||
self.resume();
|
||||
});
|
||||
}, 10);
|
||||
setImmediate(() => { this.run(); });
|
||||
}
|
||||
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче