[5.2] 9b5c832 Make failure to submit results non-fatal.

PÃ¥l Hermunn Johansen hermunn at varnish-software.com
Fri Sep 15 11:17:28 UTC 2017


commit 9b5c832c4b491f2f47c42d61fe6cbbae7f06c309
Author: Poul-Henning Kamp <phk at FreeBSD.org>
Date:   Thu Sep 14 07:14:21 2017 +0000

    Make failure to submit results non-fatal.

diff --git a/tools/vtest.sh b/tools/vtest.sh
index 4bb8ffe..e990d10 100755
--- a/tools/vtest.sh
+++ b/tools/vtest.sh
@@ -283,5 +283,9 @@ do
 	fi
 	echo "VTEST END" >> ${VTEST_REPORT}
 	pack > ${TMPDIR}/_report.tgz
-	submit ${TMPDIR}/_report.tgz
+
+	submit ${TMPDIR}/_report.tgz || \
+		sleep 300 || \
+		submit ${TMPDIR}/_report.tgz || \
+		true
 done


More information about the varnish-commit mailing list