Skip to content

Commit

Permalink
src: bump buildkit startup timeout to 30sec
Browse files Browse the repository at this point in the history
  • Loading branch information
aayushshah15 committed Jan 8, 2025
1 parent d8a061a commit 0e47889
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/setup_builder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ export async function getStickyDisk(options?: {signal?: AbortSignal}): Promise<{
// buildkitdTimeoutMs states the max amount of time this action will wait for the buildkitd
// daemon to start have its socket ready. It also additionally governs how long we will wait for
// the buildkitd workers to be ready.
const buildkitdTimeoutMs = 15000;
const buildkitdTimeoutMs = 30000;

export async function startAndConfigureBuildkitd(parallelism: number): Promise<string> {
const buildkitdAddr = await startBuildkitd(parallelism);
Expand Down

0 comments on commit 0e47889

Please sign in to comment.