Skip to content

Commit 1098c9c

Browse files
committed
comment image validation
1 parent 0b205f1 commit 1098c9c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/components/c2d/compute_engine_docker.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -543,10 +543,10 @@ export class C2DEngineDocker extends C2DEngine {
543543
// already built, we need to validate it
544544
const validation = await C2DEngineDocker.checkDockerImage(image, env.platform)
545545
console.log('Validation: ', validation)
546-
if (!validation.valid)
547-
throw new Error(
548-
`Cannot find image ${image} for ${env.platform.architecture}. Maybe it does not exist or it's build for other arhitectures.`
549-
)
546+
// if (!validation.valid)
547+
// throw new Error(
548+
// `Cannot find image ${image} for ${env.platform.architecture}. Maybe it does not exist or it's build for other arhitectures.`
549+
// )
550550
if (queueMaxWaitTime === 0) {
551551
job.status = C2DStatusNumber.PullImage
552552
job.statusText = C2DStatusText.PullImage

0 commit comments

Comments
 (0)