Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DatabaseScheduler ignores 'expires' option #558

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions djcelery/schedulers.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,13 @@ def from_entry(cls, name, skip_fields=('relative', 'options'), **entry):
obj, _ = PeriodicTask._default_manager.update_or_create(
name=name, defaults=fields,
)
expires = options.get('expires')
if expires and not obj.expires:
# if expires is not properly recognized from options
# delete django DateTimeField from the model instance
# and use just simple int as attribute for this call
del obj.expires
obj.expires = expires
return cls(obj)

def __repr__(self):
Expand Down