From 1a934430ccc197fd5aafc3a2a31f92a6f99d3316 Mon Sep 17 00:00:00 2001 From: Shadowfacts Date: Thu, 31 Oct 2019 22:21:32 -0400 Subject: [PATCH] Change feed refresh interval to 30 minutes --- lib/frenzy/update_feeds.ex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/frenzy/update_feeds.ex b/lib/frenzy/update_feeds.ex index 4afb82f..7c0e8ff 100644 --- a/lib/frenzy/update_feeds.ex +++ b/lib/frenzy/update_feeds.ex @@ -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