We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a5de244 + a21bda7 commit 0986040Copy full SHA for 0986040
1 file changed
agent/builder.py
@@ -149,7 +149,9 @@ def _push_docker_image(self):
149
client = docker.from_env(environment=environment, timeout=5 * 60)
150
151
for attempt in range(max_retries):
152
- self.output["push"].append(f"Starting Push Attempt {attempt}")
+ self.output["push"].append(
153
+ {"id": "Retry", "output": f"Starting Push Attempt {attempt}", "status": "Success"}
154
+ )
155
try:
156
if not is_registry_healthy(
157
self.registry["url"], self.registry["username"], self.registry["password"]
0 commit comments