From 7107e9ea3565aad913c1e47b6f28527de0a852c5 Mon Sep 17 00:00:00 2001 From: Ilan Steemers Date: Thu, 1 Oct 2015 15:06:43 +0200 Subject: [PATCH] fetch group should default to non cached --- django_q/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django_q/tasks.py b/django_q/tasks.py index cc5a13b..25d8e8c 100644 --- a/django_q/tasks.py +++ b/django_q/tasks.py @@ -198,7 +198,7 @@ def fetch_cached(task_id, wait=0, broker=None): time.sleep(0.01) -def fetch_group(group_id, failures=True, cached=True): +def fetch_group(group_id, failures=True, cached=False): """ Return a list of Tasks for a task group.