Change 'Downloading' to 'Retrieving' in backup_upload_archives.sh 35/32735/1
authorDave Wallace <dwallacelf@gmail.com>
Tue, 15 Jun 2021 18:10:55 +0000 (14:10 -0400)
committerDave Wallace <dwallacelf@gmail.com>
Tue, 15 Jun 2021 18:10:55 +0000 (14:10 -0400)
- To prevent false positives when searching console logs for
  jobs which are downloading content over the internet.

Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
Change-Id: I0d9d1e3138380453eabab6a0fe2844311304491f

jjb/scripts/backup_upload_archives.sh

index b660f86..6cedc80 100755 (executable)
@@ -173,11 +173,11 @@ else
 fi
 
 console_log="$JENKINS_BUILD_ARCHIVE_DIR/console.log"
-echo "Downloading Jenkins console log to '$console_log'"
+echo "Retrieving Jenkins console log to '$console_log'"
 wget -qO "$console_log" "$BUILD_URL/consoleText"
 
 console_log="$JENKINS_BUILD_ARCHIVE_DIR/console-timestamp.log"
-echo "Downloading Jenkins console timestamp log to '$console_log'"
+echo "Retrieving Jenkins console timestamp log to '$console_log'"
 wget -qO "$console_log" "$BUILD_URL/timestamps?time=HH:mm:ss&appendLog"
 
 pushd $TMP_ARCHIVES_DIR