summaryrefslogtreecommitdiff
path: root/lib/bundler/fetcher/compact_index.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bundler/fetcher/compact_index.rb')
-rw-r--r--lib/bundler/fetcher/compact_index.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/bundler/fetcher/compact_index.rb b/lib/bundler/fetcher/compact_index.rb
index 97b2e71dce..0dd9b130be 100644
--- a/lib/bundler/fetcher/compact_index.rb
+++ b/lib/bundler/fetcher/compact_index.rb
@@ -80,7 +80,8 @@ module Bundler
end.tap do |client|
client.in_parallel = lambda do |inputs, &blk|
func = lambda {|object, _index| blk.call(object) }
- worker = Bundler::Worker.new(25, func)
+ worker_name = "Compact Index (#{display_uri.host})"
+ worker = Bundler::Worker.new(25, worker_name, func)
inputs.each {|input| worker.enq(input) }
inputs.map { worker.deq }
end