Skip to content

Commit

Permalink
increase timeout for #63434 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
weinand committed Nov 22, 2018
1 parent 487eb2b commit b7a5edf
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ export class TerminalLauncher implements ITerminalLauncher {
resolve(t.processId);
});

// do not wait longer than 1 second
// do not wait longer than 5 seconds
setTimeout(_ => {
error(new Error('terminal shell timeout'));
}, 1000);
}, 5000);

}).then(shellProcessId => {

Expand Down

0 comments on commit b7a5edf

Please sign in to comment.