From eac265ccdd4ed51a8fb232f6a4568b6c055f65c1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Micha=C5=82=20Go=C5=82=C4=99biowski?= Date: Tue, 8 Sep 2015 00:40:52 +0200 Subject: [PATCH] Tests: lower the PHP sleep time in unreleasedXHR.html The AJAX test performed in unreleasedXHR.html was scheduling PHP processes sleeping for 10 minutes. When a lot of commits are tested in short intervals this was causing build failures due to the drained php-fpm pool. The 10 seconds sleep time should be enough for this test. (cherry-picked from 02e10082b25df3b47b6b98e3b35399712795b7df) Refs 62acda819f9b6fba9263d0b613e15285807b23a7 --- test/data/ajax/unreleasedXHR.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/data/ajax/unreleasedXHR.html b/test/data/ajax/unreleasedXHR.html index 5233354f5..8a41c4967 100644 --- a/test/data/ajax/unreleasedXHR.html +++ b/test/data/ajax/unreleasedXHR.html @@ -14,7 +14,7 @@ jQuery(function() { }, 200 ); var number = 50; while( number-- ) { - jQuery.ajax("../name.php?wait=600"); + jQuery.ajax("../name.php?wait=10"); } }); -- 2.39.5