diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/bundler/worker.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/worker.rb b/lib/bundler/worker.rb index 3ebd6f01db..7137484cc6 100644 --- a/lib/bundler/worker.rb +++ b/lib/bundler/worker.rb @@ -88,7 +88,7 @@ module Bundler @threads = Array.new(@size) do |i| Thread.start { process_queue(i) }.tap do |thread| - thread.name = "#{name} Worker ##{i}" if thread.respond_to?(:name=) + thread.name = "#{name} Worker ##{i}" end rescue ThreadError => e creation_errors << e |