소스 검색

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

Ask Solem 14 년 전
부모
커밋
09260545a3
2개의 변경된 파일1개의 추가작업 그리고 3개의 파일을 삭제
  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"