This is an automated email from the ASF dual-hosted git repository.
lhotari pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar-test-infra.git
The following commit(s) were added to refs/heads/master by this push:
new 1b0f2af Fix debug logging
1b0f2af is described below
commit 1b0f2af51251cd2eb8e29e8c8fe3c2afe3f88c02
Author: Lari Hotari <[email protected]>
AuthorDate: Wed Oct 29 15:26:12 2025 +0200
Fix debug logging
---
pulsarbot/entrypoint.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/pulsarbot/entrypoint.sh b/pulsarbot/entrypoint.sh
index 18838c5..ba68ce9 100755
--- a/pulsarbot/entrypoint.sh
+++ b/pulsarbot/entrypoint.sh
@@ -104,8 +104,8 @@ function get_all_runs() {
# return url and name for failed or cancelled jobs that are the most recent
ones for each workflow
function find_failed_or_cancelled() {
local all_runs=$(get_all_runs)
- echo "All runs:"
- echo "$all_runs"
+ echo >&2 "All runs:"
+ echo >&2 "$all_runs"
printf "%s" "$all_runs" | filter_oldruns \
| awk '
BEGIN { FPAT="([^,]+)|(\"[^\"]+\")" }