Add sleep to popular_videos and top_videos

This commit is contained in:
Omar Roth 2019-01-24 20:21:19 -06:00
parent 4c77908bb4
commit 1af86f6afb
1 changed files with 4 additions and 0 deletions

View File

@ -126,6 +126,8 @@ top_videos = [] of Video
spawn do
pull_top_videos(CONFIG, PG_DB) do |videos|
top_videos = videos
sleep 1.minutes
Fiber.yield
end
end
@ -133,6 +135,8 @@ popular_videos = [] of ChannelVideo
spawn do
pull_popular_videos(PG_DB) do |videos|
popular_videos = videos
sleep 1.minutes
Fiber.yield
end
end