Browse Source

Daemonization cookbook: Fixes typo '--time-limit 300' -> '--time-limit=300'. Closes #369. Thanks to reuteras

Ask Solem 14 years ago
parent
commit
09260545a3
2 changed files with 1 additions and 3 deletions
  1. 0 2
      contrib/release/verify_config_reference.py
  2. 1 1
      docs/cookbook/daemonizing.rst

+ 0 - 2
contrib/release/verify_config_reference.py

@@ -24,5 +24,3 @@ if __name__ == "__main__":
         exit(1)
     print("OK: Configuration reference complete :-)")
     exit(0)
-
-

+ 1 - 1
docs/cookbook/daemonizing.rst

@@ -86,7 +86,7 @@ This is an example configuration for those using `django-celery`::
     CELERYD_MULTI="$CELERYD_CHDIR/manage.py celeryd_multi"
 
     # Extra arguments to celeryd
-    CELERYD_OPTS="--time-limit 300 --concurrency=8"
+    CELERYD_OPTS="--time-limit=300 --concurrency=8"
 
     # Name of the celery config module.
     CELERY_CONFIG_MODULE="celeryconfig"