فهرست منبع

[HttpKernel] fixed previous commit

Fabien Potencier 15 سال پیش
والد
کامیت
eb8b7645d4
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      src/Symfony/Components/HttpKernel/Cache/Cache.php

+ 2 - 2
src/Symfony/Components/HttpKernel/Cache/Cache.php

@@ -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;