summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorb_b <brunobergot@gmail.com>2017-09-29 10:05:25 +0200
committerBernhard Posselt <BernhardPosselt@users.noreply.github.com>2017-09-29 10:05:25 +0200
commitee8468634418f9bd7cf3b21093badacd2a9bb285 (patch)
tree0245613d013ab40e00393e1f581b38b9d03472a3 /README.md
parent60703028c013e8f084c1633b5a206a462b764a3a (diff)
Update feeds are not updated help for v12 (#223)
Fix #202
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 1b875c9fa..2d47bcdac 100644
--- a/README.md
+++ b/README.md
@@ -263,13 +263,13 @@ System Cron:
* Check if the **oc_jobs** table has a **reserved_at** entry with a value other than 0. If it does for whatever reason, set it to 0. You can check this by executing:
```sql
- SELECT reserved_at FROM oc_jobs WHERE argument = '["OCA\\News\\Cron\\Updater","run"]';
+ SELECT reserved_at FROM oc_jobs WHERE (argument = '["OCA\\News\\Cron\\Updater","run"]' OR class = 'OCA\News\Cron\Updater');
```
and reset it by executing
```sql
- UPDATE oc_jobs SET reserved_at = 0 WHERE argument = '["OCA\\News\\Cron\\Updater","run"]';
+ UPDATE oc_jobs SET reserved_at = 0 WHERE (argument = '["OCA\\News\\Cron\\Updater","run"]' OR class = 'OCA\News\Cron\Updater');
```
* If your cron works fine but Nextcloud's cronjobs are never executed, file a bug in [server](https://github.com/nextcloud/server/)