Skip to content
This repository has been archived by the owner on Jun 23, 2023. It is now read-only.

crontab from 5min default to 1min #42

Merged
merged 2 commits into from
Jan 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Service/InstallationService.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down