diff --git a/Service/InstallationService.php b/Service/InstallationService.php index 81ed85f..56fa3de 100644 --- a/Service/InstallationService.php +++ b/Service/InstallationService.php @@ -294,8 +294,9 @@ public function checkDataConsistency(){ { $cronjob = new Cronjob(); $cronjob->setName('Kiss'); - $cronjob->setDescription("This cronjob fires all the kiss actions every 5 minutes"); + $cronjob->setDescription("This cronjob fires all the kiss actions every minute"); $cronjob->setThrows(['kiss.default.listens']); + $cronjob->setCrontab('*/1 * * * *'); $this->entityManager->persist($cronjob);