Fix sleep in pull_top_videos

This commit is contained in:
Omar Roth 2019-06-15 19:18:36 -05:00
parent 38600b3347
commit 3be1c9261f
No known key found for this signature in database
GPG key ID: B8254FB7EC3D37F2
3 changed files with 19 additions and 6 deletions

View file

@ -158,6 +158,7 @@ if config.statistics_enabled
}
sleep 1.minute
Fiber.yield
end
end
end
@ -167,7 +168,6 @@ if config.top_enabled
spawn do
pull_top_videos(config, PG_DB) do |videos|
top_videos = videos
sleep 1.minute
end
end
end
@ -176,7 +176,6 @@ popular_videos = [] of ChannelVideo
spawn do
pull_popular_videos(PG_DB) do |videos|
popular_videos = videos
sleep 1.minute
end
end