This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 194cdb6ebb5 Display docker command attempted when reporting docker 
failure (#64082)
194cdb6ebb5 is described below

commit 194cdb6ebb5343f0e3c546274ec518c4820b164b
Author: Bartosz SÅ‚awecki <[email protected]>
AuthorDate: Mon Mar 23 16:41:20 2026 +0100

    Display docker command attempted when reporting docker failure (#64082)
---
 dev/breeze/src/airflow_breeze/utils/docker_command_utils.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dev/breeze/src/airflow_breeze/utils/docker_command_utils.py 
b/dev/breeze/src/airflow_breeze/utils/docker_command_utils.py
index 12111985ad4..dfbe86780cd 100644
--- a/dev/breeze/src/airflow_breeze/utils/docker_command_utils.py
+++ b/dev/breeze/src/airflow_breeze/utils/docker_command_utils.py
@@ -23,6 +23,7 @@ import json
 import os
 import platform
 import re
+import shlex
 import subprocess
 import sys
 from functools import lru_cache
@@ -185,6 +186,7 @@ def check_docker_is_running():
             "[error]Docker is not running.[/]\n[warning]Please make sure 
Docker is installed and running.[/]"
         )
         if response.stderr:
+            console_print(f"\n[warning]Command 
attempted:[/]\n{shlex.join(response.args)}")
             console_print(f"\n[warning]Docker error 
output:[/]\n{response.stderr.strip()}")
         if os.environ.get("CODESPACES", "").lower() == "true":
             console_print(

Reply via email to