[HttpKernel] fixed previous commit

This commit is contained in:
Fabien Potencier 2010-08-04 23:06:49 +02:00
parent d876ea0766
commit eb8b7645d4

View File

@ -452,11 +452,11 @@ class Cache implements HttpKernelInterface
} else {
// wait for the lock to be released
$wait = 0;
while (file_exists($lock) && $wait < 5) {
while (file_exists($lock) && $wait < 5000000) {
usleep($wait += 50000);
}
if ($wait < 2) {
if ($wait < 2000000) {
// replace the current entry with the fresh one
$new = $this->lookup($request);
$entry->headers = $new->headers;