diff --git a/stack_orchestrator/deploy/images.py b/stack_orchestrator/deploy/images.py index bf322656..78fe6204 100644 --- a/stack_orchestrator/deploy/images.py +++ b/stack_orchestrator/deploy/images.py @@ -33,12 +33,9 @@ def remote_image_exists(local_tag: str, remote_repo_url: str): docker = DockerClient() try: remote_tag = remote_tag_for_image(local_tag, remote_repo_url) - print(f"local tag: {local_tag} ; remote tag: {remote_tag}") result = docker.manifest.inspect(remote_tag) - print(result) return True if result else False except Exception as e: # noqa: E722 - print(e) return False