|
@@ -235,9 +235,9 @@ |
|
235
|
235
|
private function backOff() |
|
236
|
236
|
{ |
|
237
|
237
|
$delay = $this->getDelay(); |
|
238
|
238
|
|
|
239
|
|
- usleep($delay * 1000000); |
|
239
|
+ usleep((int) ($delay * 1000000)); |
|
240
|
240
|
} |
|
241
|
241
|
|
|
242
|
242
|
/** |
|
243
|
243
|
* Gets the delay (in seconds) for the current backoff period. |