Skip to content

Commit ca600c0

Browse files
committed
Clarify that insertion ordering is preserved
1 parent a9b095f commit ca600c0

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

django_lightweight_queue/backends/base.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ def bulk_enqueue(self, jobs: Collection[Job], queue: QueueName) -> None:
2222
"""
2323
Enqueue a number of tasks in one pass.
2424
25+
The jobs will be inserted in the order provided in the given collection.
26+
2527
Backends are strongly encouraged to override this with a more efficient
2628
implemenation if they can.
2729
"""

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "django-lightweight-queue"
3-
version = "4.3.1"
3+
version = "4.3.2"
44
description = "Lightweight & modular queue and cron system for Django"
55
authors = ["Thread Engineering <[email protected]>"]
66
license = "BSD-3-Clause"

0 commit comments

Comments
 (0)