From cec296410a3108dc160c819cb4c3255e015cd0fb Mon Sep 17 00:00:00 2001 From: Zach Borboa Date: Sun, 17 May 2020 18:53:13 -0700 Subject: [PATCH] Clean up --- src/Curl/MultiCurl.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Curl/MultiCurl.php b/src/Curl/MultiCurl.php index 83b4603..89862b6 100644 --- a/src/Curl/MultiCurl.php +++ b/src/Curl/MultiCurl.php @@ -1144,7 +1144,6 @@ class MultiCurl private function waitUntilRequestQuotaAvailable() { $sleep_until = $this->currentStartTime + $this->intervalSeconds; - $sleep_until_relative = $sleep_until - $this->currentStartTime; $sleep_seconds = $sleep_until - microtime(true); // Avoid using time_sleep_until() as it appears to be less precise and not sleep long enough.