Skip to content

Commit 02e1008

Browse files
committed
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. Refs 62acda8
1 parent 14c0fe4 commit 02e1008

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/data/ajax/unreleasedXHR.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
}, 200 );
1515
var number = 50;
1616
while( number-- ) {
17-
jQuery.ajax("../name.php?wait=600");
17+
jQuery.ajax("../name.php?wait=10");
1818
}
1919
});
2020
</script>

0 commit comments

Comments
 (0)