We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d900748 commit b58d585Copy full SHA for b58d585
src/flyte/_internal/imagebuild/image_builder.py
@@ -142,7 +142,9 @@ class ImageBuildEngine:
142
@staticmethod
143
@alru_cache
144
async def image_exists(image: Image) -> Optional[str]:
145
- assert image.name is not None, f"Image name is not set for {image}"
+ if image.name is None:
146
+ logger.debug(f"Image {image} has no name. Skip existence check.")
147
+ return image.uri
148
149
tag = image._final_tag
150
0 commit comments