File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -196,13 +196,13 @@ Hashed Cron Expression
196196~~~~~~~~~~~~~~~~~~~~~~
197197
198198If 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.
200200This may cause an issue if a task has a memory leak.
201201
202202You can add a ``#``(for hash) symbol in expression to generate random value. The value
203203is deterministic based on the message. This means that while the value is random, it is
204204predictable 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
206206of ``56 20 * * * `` (every day at 8:56pm).
207207
208208A hash range ``#(x-y) `` can also be used. For example, ``# #(0-7) * * * `` means daily,
You can’t perform that action at this time.
0 commit comments