From b00d2ebf6dc9c7d73766a57e602dd3a945d8526e Mon Sep 17 00:00:00 2001 From: Manuel Kaufmann Date: Mon, 6 Mar 2023 18:33:56 +0100 Subject: [PATCH] Proxito: cacheops right model I got confused because we are mapping a different table name. `subscriptions.models.PlanFeature` maps to `organizations_planfeature` table. --- readthedocs/settings/base.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/readthedocs/settings/base.py b/readthedocs/settings/base.py index c73f5b4ac48..c112d0d0535 100644 --- a/readthedocs/settings/base.py +++ b/readthedocs/settings/base.py @@ -1061,7 +1061,9 @@ def DOCKER_LIMITS(self): 'ops': CACHEOPS_OPS, 'timeout': CACHEOPS_TIMEOUT, }, - 'organizations.planfeature': { + + # readthedocs.subscriptions.* + 'subscriptions.planfeature': { 'ops': CACHEOPS_OPS, 'timeout': CACHEOPS_TIMEOUT, },