Commit c25b7c0e authored by Michael Kozono's avatar Michael Kozono

Speed up inserts

parent b63e8f4a
...@@ -80,8 +80,10 @@ module Gitlab ...@@ -80,8 +80,10 @@ module Gitlab
end end
def insert_file_paths(file_paths) def insert_file_paths(file_paths)
file_paths.each do |file_path| ActiveRecord::Base.transaction do
insert_file_path(file_path) file_paths.each do |file_path|
insert_file_path(file_path)
end
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment