瀏覽代碼

Added complex crontab-expression parser addition to Changelog.

Vincent Driessen 15 年之前
父節點
當前提交
f5b5f34814
共有 1 個文件被更改,包括 11 次插入0 次删除
  1. 11 0
      Changelog

+ 11 - 0
Changelog

@@ -188,6 +188,17 @@ News
 
 * now depends on :mod:`pyparsing`
 
+* Added support for using complex crontab-expressions in periodic tasks.  For
+  example, you can now use::
+  
+    crontab(minute="*/15")
+
+  or even::
+
+    crontab(minute="*/30", hour="8-17,1-2", day_of_week="thu-fri")
+
+  See also http://ask.github.com/celery/getting-started/periodic-tasks.html
+
 * celeryd: Now waits for available pool processes before applying new
   tasks to the pool.