Change feed refresh interval to 30 minutes
This commit is contained in:
parent
d8139c6ce0
commit
1a934430cc
|
@ -31,8 +31,8 @@ defmodule Frenzy.UpdateFeeds do
|
||||||
end
|
end
|
||||||
|
|
||||||
defp schedule_update() do
|
defp schedule_update() do
|
||||||
# 15 minutes
|
# 30 minutes
|
||||||
Process.send_after(self(), :update_feeds, 15 * 60 * 1000)
|
Process.send_after(self(), :update_feeds, 30 * 60 * 1000)
|
||||||
# 1 minutes
|
# 1 minutes
|
||||||
# Process.send_after(self(), :update_feeds, 60 * 1000)
|
# Process.send_after(self(), :update_feeds, 60 * 1000)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue