fix: make the StatusUpdater Run every 30 seconds instead of 10 to reduce the nr of status updates sent to Discord and avoid issues with updating the status

Signed-off-by: moonleay <contact@moonleay.net>
This commit is contained in:
moonleay 2024-01-19 22:41:29 +01:00
parent 39917e4b5a
commit 58f2379f45
Signed by: moonleay
GPG key ID: 82667543CCD715FB

View file

@ -30,7 +30,7 @@ object StatusUpdater : ICronjob {
override val jobName: String
get() = "StatusUpdater"
override val jobIncoming: String
get() = "/10 * * * * * 0o *" //Every 5 seconds
get() = "/30 * * * * * 0o *" //Every 30 seconds
override val jobType: CronjobType
get() = CronjobType.INFINITE
override val continueJob: Boolean