From 3a6f7116033ed32f4bdbf7a7547006402a02adba Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Mon, 11 Nov 2024 14:15:59 -0500 Subject: [PATCH] chore: a little more debugging It would be nice know where this process is at when it fails. Signed-off-by: Ralph Bean --- pyxis/create_container_image.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyxis/create_container_image.py b/pyxis/create_container_image.py index f11403d..46069b1 100755 --- a/pyxis/create_container_image.py +++ b/pyxis/create_container_image.py @@ -382,10 +382,12 @@ def main(): # pragma: no cover parsed_data = prepare_parsed_data(args) # First check if it exists at all + LOGGER.info(f"Checking to see if digest {args.architecture_digest} exists in pyxis") image = image_already_exists(args, args.architecture_digest, repository=None) if image: # Then, check if it exists in association with the given repository identifier = image["_id"] + LOGGER.info(f"It does! Checking to see if it's associated with {args.name}") if image_already_exists(args, args.architecture_digest, repository=args.name): LOGGER.info( f"Image with given docker_image_digest already exists as {identifier} "