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 02e10082b2)

Refs 62acda819f
This commit is contained in:
Michał Gołębiowski 2015-09-08 00:40:52 +02:00
parent a9930565f1
commit eac265ccdd

View 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>