Skip to content

Commit

Permalink
Increase settings upload timeout. Fix #149089 (#149203) (#149651)
Browse files Browse the repository at this point in the history
  • Loading branch information
roblourens authored May 16, 2022
1 parent 8c8a552 commit c3511e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/azure-pipelines/upload-configuration.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ function generateVSCodeConfigurationTask() {
const timer = setTimeout(() => {
codeProc.kill();
reject(new Error('export-default-configuration process timed out'));
}, 12 * 1000);
}, 30 * 1000);
codeProc.on('error', err => {
clearTimeout(timer);
reject(err);
Expand Down
2 changes: 1 addition & 1 deletion build/azure-pipelines/upload-configuration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ function generateVSCodeConfigurationTask(): Promise<string | undefined> {
const timer = setTimeout(() => {
codeProc.kill();
reject(new Error('export-default-configuration process timed out'));
}, 12 * 1000);
}, 30 * 1000);

codeProc.on('error', err => {
clearTimeout(timer);
Expand Down

0 comments on commit c3511e6

Please sign in to comment.