[master] 562e19c Make failure to submit results non-fatal.

Poul-Henning Kamp phk at FreeBSD.org
Thu Sep 14 07:15:06 UTC 2017


commit 562e19cfe7e2d327f5e61643553612ede2481ad9
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