Navigation Menu

Skip to content

Commit

Permalink
Tests: lower the PHP sleep time in unreleasedXHR.html
Browse files Browse the repository at this point in the history
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
  • Loading branch information
mgol committed Sep 7, 2015
1 parent 14c0fe4 commit 02e1008
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/data/ajax/unreleasedXHR.html
Expand Up @@ -14,7 +14,7 @@
}, 200 );
var number = 50;
while( number-- ) {
jQuery.ajax("../name.php?wait=600");
jQuery.ajax("../name.php?wait=10");
}
});
</script>
Expand Down

0 comments on commit 02e1008

Please sign in to comment.