We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c24fde commit dcc810fCopy full SHA for dcc810f
django_celery_results/models/generic.py
@@ -15,6 +15,7 @@ class Meta(AbstractTaskResult.Meta):
15
16
abstract = False
17
app_label = "django_celery_results"
18
+ swappable = "CELERY_RESULTS_TASKRESULT_MODEL"
19
20
21
class ChordCounter(AbstractChordCounter):
@@ -25,6 +26,7 @@ class Meta(AbstractChordCounter.Meta):
25
26
27
28
29
+ swappable = "CELERY_RESULTS_CHORDCOUNTER_MODEL"
30
31
32
class GroupResult(AbstractGroupResult):
@@ -35,3 +37,4 @@ class Meta(AbstractGroupResult.Meta):
35
37
36
38
39
40
+ swappable = "CELERY_RESULTS_GROUPRESULT_MODEL"
0 commit comments