From 7762872e062f21953e91016eedcfd49987c95a21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Ml=C3=A1dek?= Date: Tue, 15 Sep 2020 20:56:24 +0200 Subject: [PATCH] increase cache to 30s --- sdbs_infra/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdbs_infra/urls.py b/sdbs_infra/urls.py index 9083e9e..13158e3 100644 --- a/sdbs_infra/urls.py +++ b/sdbs_infra/urls.py @@ -22,7 +22,7 @@ from sdbs_infra import settings from sdbs_infra.dashboard.views import IndexView urlpatterns = [ - path('', cache_page(10)(IndexView.as_view())), + path('', cache_page(30)(IndexView.as_view())), path('admin/', admin.site.urls), ]