Add fix for channel job

This commit is contained in:
Omar Roth 2018-08-06 07:59:42 -05:00
parent ca2320f17f
commit 923f9a716b
2 changed files with 7 additions and 3 deletions

View file

@ -83,9 +83,13 @@ crawl_threads.times do
end
end
total_channels = PG_DB.query_one("SELECT count(*) FROM channels", as: Int64)
channel_threads.times do |i|
limit = total_channels / channel_threads
offset = limit.not_nil! * i
spawn do
refresh_channels(PG_DB)
refresh_channels(PG_DB, limit, offset)
end
end