Skip to content

Commit c3511e6

Browse files
authored
Increase settings upload timeout. Fix #149089 (#149203) (#149651)
1 parent 8c8a552 commit c3511e6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build/azure-pipelines/upload-configuration.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ function generateVSCodeConfigurationTask() {
5252
const timer = setTimeout(() => {
5353
codeProc.kill();
5454
reject(new Error('export-default-configuration process timed out'));
55-
}, 12 * 1000);
55+
}, 30 * 1000);
5656
codeProc.on('error', err => {
5757
clearTimeout(timer);
5858
reject(err);

build/azure-pipelines/upload-configuration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ function generateVSCodeConfigurationTask(): Promise<string | undefined> {
6363
const timer = setTimeout(() => {
6464
codeProc.kill();
6565
reject(new Error('export-default-configuration process timed out'));
66-
}, 12 * 1000);
66+
}, 30 * 1000);
6767

6868
codeProc.on('error', err => {
6969
clearTimeout(timer);

0 commit comments

Comments
 (0)