Olivier Sels

Results 2 issues of Olivier Sels

## Description Adds support for delayed asynchronous task invocation with SQS as the task source. ```python @task(service='sqs', delay_seconds=600) make_pie(): """ This task is invoked asynchronously 10 minutes after it is...

needs-user-testing

# Summary I'd like to open a discussion on the feature of delayed asynchronous task invocation as in the following example: ```python @task(delay_seconds=1800) make_pie(): """ This task is invoked asynchronously...