]> source.dussan.org Git - jquery.git/commitdiff
Tests: lower the PHP sleep time in unreleasedXHR.html
authorMichał Gołębiowski <m.goleb@gmail.com>
Mon, 7 Sep 2015 22:40:52 +0000 (00:40 +0200)
committerMichał Gołębiowski <m.goleb@gmail.com>
Mon, 7 Sep 2015 22:44:44 +0000 (00:44 +0200)
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.

Refs 62acda819f9b6fba9263d0b613e15285807b23a7

test/data/ajax/unreleasedXHR.html

index 5233354f57899011f6f37c4f3859cbfdb5c2d79d..8a41c4967ae19fa63015ee5dbccba807ebb5d8a7 100644 (file)
@@ -14,7 +14,7 @@ jQuery(function() {
        }, 200 );
        var number = 50;
        while( number-- ) {
-               jQuery.ajax("../name.php?wait=600");
+               jQuery.ajax("../name.php?wait=10");
        }
 });
 </script>