Change feed refresh interval to 30 minutes

This commit is contained in:
Shadowfacts 2019-10-31 22:21:32 -04:00
parent d8139c6ce0
commit 1a934430cc
Signed by: shadowfacts
GPG Key ID: 94A5AB95422746E5
1 changed files with 2 additions and 2 deletions

View File

@ -31,8 +31,8 @@ defmodule Frenzy.UpdateFeeds do
end
defp schedule_update() do
# 15 minutes
Process.send_after(self(), :update_feeds, 15 * 60 * 1000)
# 30 minutes
Process.send_after(self(), :update_feeds, 30 * 60 * 1000)
# 1 minutes
# Process.send_after(self(), :update_feeds, 60 * 1000)
end