Merge pull request #571 from lots0logs/master

make args and kwargs explicit for enqueue_call function
main
Selwin Ong 10 years ago
commit 7312683e4d

@ -186,7 +186,7 @@ class Queue(object):
timeout = timeout or self._default_timeout
job = self.job_class.create(
func, args, kwargs, connection=self.connection,
func, args=args, kwargs=kwargs, connection=self.connection,
result_ttl=result_ttl, ttl=ttl, status=JobStatus.QUEUED,
description=description, depends_on=depends_on,
timeout=timeout, id=job_id, origin=self.name)

Loading…
Cancel
Save