Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 12ffac5

Browse files
committed
Fix CR issues
1 parent 3f78df2 commit 12ffac5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scheduler.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,13 +196,13 @@ Hashed Cron Expression
196196
~~~~~~~~~~~~~~~~~~~~~~
197197

198198
If you have many trigger scheduled at same time (for example, at midnight, ``0 0 * * *``)
199-
this could create a very long running schedule right at this time.
199+
this will create a very long running schedules list right at this time.
200200
This may cause an issue if a task has a memory leak.
201201

202202
You can add a ``#``(for hash) symbol in expression to generate random value. The value
203203
is deterministic based on the message. This means that while the value is random, it is
204204
predictable and consistent. A message with string representation ``my task``
205-
and a defined frequency of ``# # * * *`` will have a calculated frequency
205+
and a defined frequency of ``# # * * *`` will have an idempotent frequency
206206
of ``56 20 * * *`` (every day at 8:56pm).
207207

208208
A hash range ``#(x-y)`` can also be used. For example, ``# #(0-7) * * *`` means daily,

0 commit comments

Comments
 (0)