From 45519edf0bb275dc271f662915c369b51efc823d Mon Sep 17 00:00:00 2001 From: Simon Warta Date: Wed, 23 Sep 2020 09:51:28 +0200 Subject: [PATCH] Avoid following logs for Tendermint in CI which does not work with multiple instances. Instead debug start logs. --- scripts/tendermint/start.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/tendermint/start.sh b/scripts/tendermint/start.sh index a1952697..c863f92a 100755 --- a/scripts/tendermint/start.sh +++ b/scripts/tendermint/start.sh @@ -46,6 +46,7 @@ if [ -n "${CI:-}" ]; then # Give process some time to come alive. No idea why this helps. Needed for CI. sleep 0.5 - # Follow the logs in CI's background job - tail -f "$LOGFILE" + # Debug start + sleep 3 + cat "$LOGFILE" fi