Skip to content

Commit

Permalink
#143 do not cache the feed for now
Browse files Browse the repository at this point in the history
  • Loading branch information
ephes committed May 21, 2024
1 parent 73ec01b commit c52de50
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cast/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
# Feeds
path(
"<slug:slug>/feed/rss.xml",
view=cache_page(5 * 60)(feeds.LatestEntriesFeed()),
# view=cache_page(5 * 60)(feeds.LatestEntriesFeed()),
view=feeds.LatestEntriesFeed(),
name="latest_entries_feed",
),
path(
Expand Down

0 comments on commit c52de50

Please sign in to comment.