Merge pull request #93 from useblacksmith/fix-error-msg

src: fix error message
This commit is contained in:
Aditya Maru 2025-01-08 07:14:53 -05:00 committed by GitHub
commit 82dd2a61b6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

2
dist/index.js generated vendored

File diff suppressed because one or more lines are too long

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long

View File

@ -204,7 +204,7 @@ export async function startAndConfigureBuildkitd(parallelism: number): Promise<s
}
if (!fs.existsSync('/run/buildkit/buildkitd.sock')) {
throw new Error('buildkitd socket not found after 15s timeout');
throw new Error('buildkitd socket not found after 30s timeout');
}
// Check that buildkit instance is ready by querying workers for up to 30s
const startTimeBuildkitReady = Date.now();