This is an automated email from the ASF dual-hosted git repository. frankvicky pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/kafka.git
The following commit(s) were added to refs/heads/trunk by this push: new 4410d35cdc7 KAFKA-19179: remove the dot from thread_dump_url (#19525) 4410d35cdc7 is described below commit 4410d35cdc7251cca607918fd754d458fde27918 Author: Xuan-Zhang Gong <gongxuanzhangm...@gmail.com> AuthorDate: Tue Apr 22 10:16:54 2025 +0800 KAFKA-19179: remove the dot from thread_dump_url (#19525) As the title. Ticket: https://issues.apache.org/jira/browse/KAFKA-19179 Reviewers: PoAn Yang <pay...@apache.org>, Jhen-Yung Hsu <jhenyung...@gmail.com>, TengYao Chi <frankvi...@apache.org>, Nick Guo <lansg0...@gmail.com>, Ken Huang <s7133...@gmail.com>, Chia-Ping Tsai <chia7...@gmail.com> --- .github/scripts/junit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/junit.py b/.github/scripts/junit.py index 95b5d4e4610..550ea493511 100644 --- a/.github/scripts/junit.py +++ b/.github/scripts/junit.py @@ -361,7 +361,7 @@ if __name__ == "__main__": failure_messages.append(f"Gradle task had a failure exit code. Failing this script.") if thread_dump_url: - failure_messages.append(f"Thread dump available at {thread_dump_url}. Failing this script.") + failure_messages.append(f"Thread dump available at {thread_dump_url} and the script will now fail.") if junit_report_url: report_md = f"Download [JUnit HTML report]({junit_report_url})"