Skip to content

Commit

Permalink
Don't cache species views
Browse files Browse the repository at this point in the history
It's unclear why this really small dataset is being cached, given that
it is only accessible to admin users and will never have a large
volume of requests.
  • Loading branch information
Steve Lamb committed Aug 26, 2013
1 parent 8a9de0f commit 0fe5925
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@

(r'^static/(?P<path>.*)$', 'django.views.static.serve',
{'document_root': settings.STATIC_DATA}),
(r'^Species/(?P<path>.*)$', 'django.views.static.serve',
{'document_root': settings.MEDIA_ROOT + "/Species"}),
(r'^Nodes/(?P<path>.*)$', 'django.views.static.serve',
{'document_root': settings.MEDIA_ROOT + "/Nodes"}),
(r'^media/(?P<path>.*)$', 'django.views.static.serve',
Expand Down

0 comments on commit 0fe5925

Please sign in to comment.