Skip to content

Commit e3acfae

Browse files
committed
Tests passing
1 parent 3e11aa6 commit e3acfae

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

Changelog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@
1515

1616
- Now depends on :mod:`pytz`
1717

18+
- Fixed Django Admin monitor timezone problem.
19+
20+
Events still use timestamps that converts to the timezone of the receiving
21+
node, but a proper fix is being worked on that will be part of Celery 3.1
22+
1823
- Fixed error in database close mechanism for Oracle.
1924

2025
Fix contributed by Dan LaMotte.

djcelery/backends/cache.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class CacheBackend(KeyValueStoreBackend):
5151
"""Backend using the Django cache framework to store task metadata."""
5252

5353
def __init__(self, *args, **kwargs):
54-
super(CacheBackend, self).__init__(self, *args, **kwargs)
54+
super(CacheBackend, self).__init__(*args, **kwargs)
5555
expires = kwargs.get("expires",
5656
current_app.conf.CELERY_TASK_RESULT_EXPIRES)
5757
if isinstance(expires, timedelta):

0 commit comments

Comments
 (0)