Skip to content

Commit

Permalink
Merge pull request #92 from useblacksmith/01-07-src_bump_buildkit_sta…
Browse files Browse the repository at this point in the history
…rtup_timeout_to_30sec

src: bump buildkit startup timeout to 30sec
  • Loading branch information
adityamaru authored Jan 8, 2025
2 parents d8a061a + 0e47889 commit 3b96b27
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 3b96b27

Please sign in to comment.