Change default time between no-work iterations from 1 second to 5 seconds.

This commit is contained in:
Greyscale 2020-11-22 18:09:45 +01:00
parent 0073b743b0
commit cf9fb4398a
No known key found for this signature in database
GPG key ID: C6178C19949CFFE3

View file

@ -10,7 +10,7 @@ abstract class AbstractWorker implements WorkerInterface
protected Logger $logger;
protected EnvironmentService $environmentService;
protected array $cliArguments;
protected int $timeBetweenRuns = 1;
protected int $timeBetweenRuns = 5;
public function __construct(
Logger $logger,