From f13f3a2642effdcb9b1b98d8f094052b991d38a6 Mon Sep 17 00:00:00 2001 From: Pierre Ozoux Date: Wed, 6 Dec 2017 15:50:39 +0100 Subject: Fix debug instructions (#238) escape the escape char! --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 2d47bcdac..6599894bd 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"]' OR class = 'OCA\News\Cron\Updater'); + 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"]' OR class = 'OCA\News\Cron\Updater'); + 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