Jeff Browning

Results 17 comments of Jeff Browning

@dligthart In my experience, the celery team is stretched pretty thin and @auvipy here is suggesting someone jump in and contribute to the project if they want this done. Also,...

Faced the same error. As @Kianoosh76 reported, it is a problem with use_sandbox. The APNSClient in send_batch_message is not being initialized with the proper arg for use_sandbox. The solution was...

Would love this to get merged.

A working way to replace with a single group is: ``` @app.task(bind=True) def replace_group_task(self, n): subtasks = [add_task.s(i) for i in range(n)] return self.replace(group(*subtasks)) ``` Celery's testcases include these kind...

Since countdown is syntactic sugar for eta as @wryun has pointed out, this is definitely a gotcha.

This is an issue I hit with django. For celery to work off of django's settings files, celery conf variables must be defined starting with `CELERY_` and in all caps...