summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2016-10-02 19:58:09 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2016-10-02 19:58:09 +0200
commit8e8b5d9fdf6cb6d873af3e99c835814badfe1c99 (patch)
treecd64612f2f624dade0a0234ba3d36972d11989d2
parenta6411d78000d34f94a814504bbe0fcbd4f077889 (diff)
syntax
-rw-r--r--README.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/README.md b/README.md
index 3c504be9a..b1b7fad33 100644
--- a/README.md
+++ b/README.md
@@ -258,15 +258,15 @@ System Cron:
* If there is no **updating** statement in your logs check if your cronjob is executed by executing a different script
* Check if the **oc_jobs** table has a **reserved_at** with a different value 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"]';
- ```
+ ```sql
+ SELECT reserved_at FROM oc_jobs WHERE argument = '["OCA\\News\\Cron\\Updater","run"]';
+ ```
and reset it by executing
- ```sql
- UPDATE oc_jobs SET reserved_at = 0 WHERE argument = '["OCA\\News\\Cron\\Updater","run"]';
- ```
+ ```sql
+ UPDATE oc_jobs SET reserved_at = 0 WHERE argument = '["OCA\\News\\Cron\\Updater","run"]';
+ ```
* If your cron works fine but Nextcloud's cronjobs are never executed, file a bug in [server](https://github.com/nextcloud/server/)