Skip to content

Commit b2a08bc

Browse files
chore: Increase timeout to 10 minutes
The scanner unit tests often require more than 5 minutes to complete.
1 parent 90630f7 commit b2a08bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/src/utils/ProcessUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ function importFromVSCode (id: string): NodeRequire {
3636
// The conversion allows the linter to understand the type of the imported module
3737
export const pty = importFromVSCode('node-pty') as unknown as typeof nodepty
3838

39-
export const BITBAKE_TIMEOUT = 300000
39+
export const BITBAKE_TIMEOUT = 600000 // 10 minutes
4040
export const BITBAKE_EXIT_TIMEOUT = 30000
4141

4242
export type KillProcessFunction = (child: nodepty.IPty) => Promise<void>

0 commit comments

Comments
 (0)