summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorPierre Ozoux <pierre@ozoux.net>2017-12-06 15:50:39 +0100
committerBernhard Posselt <BernhardPosselt@users.noreply.github.com>2017-12-06 15:50:39 +0100
commitf13f3a2642effdcb9b1b98d8f094052b991d38a6 (patch)
tree11eca4fb14016fab7121e4f6265e47d1a5d904d8 /README.md
parent25138b7ee921bc557fd484075a18b590d26351c2 (diff)
Fix debug instructions (#238)
escape the escape char!
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 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/)