From 8a022e80069e366efe4380c5df1c013638545fe0 Mon Sep 17 00:00:00 2001 From: Vanessa Rene Valderrama Date: Tue, 5 Nov 2019 09:50:13 -0600 Subject: [PATCH] Modify log publisher Adding a timeout to the log publisher script to provide more information for troubleshooting. Change-Id: I3c5de3bffdac9be0844a2fa020128bdfde2bd610 Signed-off-by: Vanessa Rene Valderrama --- jjb/include-raw-deploy-archives.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jjb/include-raw-deploy-archives.sh b/jjb/include-raw-deploy-archives.sh index a563d309c..073aa3e6d 100644 --- a/jjb/include-raw-deploy-archives.sh +++ b/jjb/include-raw-deploy-archives.sh @@ -89,8 +89,8 @@ touch $ARCHIVES_DIR/_sys-info.txt # Magic string used to trim console logs at the appropriate level during wget echo "-----END_OF_BUILD-----" -wget -q -O $ARCHIVES_DIR/console.log ${{BUILD_URL}}consoleText -wget -q -O $ARCHIVES_DIR/console-timestamp.log ${{BUILD_URL}}/timestamps?time=HH:mm:ss\&appendLog +wget -q --timeout=60 -O $ARCHIVES_DIR/console.log ${{BUILD_URL}}consoleText +wget -q --timeout=60 -O $ARCHIVES_DIR/console-timestamp.log ${{BUILD_URL}}/timestamps?time=HH:mm:ss\&appendLog sed -i '/^-----END_OF_BUILD-----$/,$d' $ARCHIVES_DIR/console.log sed -i '/^.*-----END_OF_BUILD-----$/,$d' $ARCHIVES_DIR/console-timestamp.log -- 2.16.6