From ee8468634418f9bd7cf3b21093badacd2a9bb285 Mon Sep 17 00:00:00 2001 From: b_b Date: Fri, 29 Sep 2017 10:05:25 +0200 Subject: Update feeds are not updated help for v12 (#223) Fix #202 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'README.md') 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/) -- cgit v1.2.3