This is an automated email from the ASF dual-hosted git repository.
choo121600 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 566acba799d Fix Rich markup not rendered in triage action prompt
(#63329)
566acba799d is described below
commit 566acba799d6dd56750022f54c14c9133b15f22c
Author: Yeonguk Choo <[email protected]>
AuthorDate: Wed Mar 11 18:03:56 2026 +0900
Fix Rich markup not rendered in triage action prompt (#63329)
---
dev/breeze/src/airflow_breeze/utils/confirm.py | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/dev/breeze/src/airflow_breeze/utils/confirm.py
b/dev/breeze/src/airflow_breeze/utils/confirm.py
index d700bff93fb..5ca0de4b86f 100644
--- a/dev/breeze/src/airflow_breeze/utils/confirm.py
+++ b/dev/breeze/src/airflow_breeze/utils/confirm.py
@@ -20,6 +20,7 @@ import os
import sys
from enum import Enum
+from airflow_breeze.utils.console import get_console
from airflow_breeze.utils.shared_options import get_forced_answer
STANDARD_TIMEOUT = 10
@@ -174,7 +175,8 @@ def prompt_triage_action(
choices.append(f"[{letter}]{label}")
choices_str = " / ".join(choices)
- prompt_text = f"\n{message}\n{choices_str}"
+ get_console().print(f"\n{message}")
+ prompt_text = choices_str
if timeout:
prompt_text += (
f" (auto-select {_LABELS[default]} in {timeout}s"