mirror of
https://github.com/YGGverse/Yo.git
synced 2025-02-06 03:44:14 +00:00
apply sleep on timeout value provided only
This commit is contained in:
parent
bc00f0c851
commit
33d657cb72
@ -581,9 +581,12 @@ foreach($search->get() as $document)
|
|||||||
);
|
);
|
||||||
|
|
||||||
// Delay next attempt
|
// Delay next attempt
|
||||||
sleep(
|
if ($ftp->connection->attempts->delay)
|
||||||
$ftp->connection->attempts->delay
|
{
|
||||||
);
|
sleep(
|
||||||
|
$ftp->connection->attempts->delay
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
} while ($connection === false);
|
} while ($connection === false);
|
||||||
@ -605,7 +608,10 @@ foreach($search->get() as $document)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Crawl queue delay
|
// Crawl queue delay
|
||||||
sleep(
|
if ($config->cli->document->crawl->queue->limit)
|
||||||
$config->cli->document->crawl->queue->limit
|
{
|
||||||
);
|
sleep(
|
||||||
|
$config->cli->document->crawl->queue->limit
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user