From 41c41cf9c31852004dd4f4dd38db099a6c1b6bd0 Mon Sep 17 00:00:00 2001 From: bom Date: Tue, 18 Jul 2023 12:22:50 +0200 Subject: [PATCH] Fix execute_secure call --- src/main/python/ddadevops/infrastructure/infrastructure.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/python/ddadevops/infrastructure/infrastructure.py b/src/main/python/ddadevops/infrastructure/infrastructure.py index f2064a2..99ec45c 100644 --- a/src/main/python/ddadevops/infrastructure/infrastructure.py +++ b/src/main/python/ddadevops/infrastructure/infrastructure.py @@ -64,7 +64,8 @@ class ImageApi: def dockerhub_login(self, username: str, password: str): self.execution_api.execute_secure( - f"docker login --username {username} --password {password}" + f"docker login --username {username} --password {password}", + "docker login --username ***** --password *****" ) def dockerhub_publish(self, name: str, username: str, tag: str):