소스 검색

Update src/Symfony/Component/HttpKernel/HttpCache/HttpCache.php

Arnaud Buathier 13 년 전
부모
커밋
fbed9ff8de
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      src/Symfony/Component/HttpKernel/HttpCache/HttpCache.php

+ 2 - 1
src/Symfony/Component/HttpKernel/HttpCache/HttpCache.php

@@ -503,7 +503,8 @@ class HttpCache implements HttpKernelInterface
             // wait for the lock to be released
             $wait = 0;
             while (file_exists($lock) && $wait < 5000000) {
-                usleep($wait += 50000);
+                usleep(50000);
+                $wait += 50000;
             }
 
             if ($wait < 2000000) {