I want to change only the time of a single background job, not the others, but I don’t know how I can do it, and I’ve been researching and I haven’t found anything.
For example I want it to do it every 2 hours.
I want to change the following job:
525 | OCA\FullTextSearch\Cron\Index
So I would try to reach the goal by changing this line:
$this->setInterval(12 * 60); // 12 minutes
into this:
$this->setInterval(120 * 60); // 120 minutes
And be aware, this change is not permanent, it will be reverted after each update and may cause integrity-checks to issue a warning. You can then make that warning disappear by undoing the change back to the default, running the integrity check on the app again with ./occ integrity:check-app fulltextsearch
and after that you can change the timeout again as above.
I hope this was what you where looking for and that it helps,