summaryrefslogtreecommitdiff
path: root/lib/bundler/vendor/connection_pool/lib/connection_pool/monotonic_time.rb
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2021-07-07 14:07:29 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2021-07-07 15:31:52 +0900
commitc082c6eb7c786a432bea23cf78839f64585cb630 (patch)
treee3c608264fe03645e905fe7284d713cff87b87dd /lib/bundler/vendor/connection_pool/lib/connection_pool/monotonic_time.rb
parent6e2240a2f954c84ed12357382c9c065ae4b91e11 (diff)
Sync RubyGems and Bundler with upstream
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/4634
Diffstat (limited to 'lib/bundler/vendor/connection_pool/lib/connection_pool/monotonic_time.rb')
-rw-r--r--lib/bundler/vendor/connection_pool/lib/connection_pool/monotonic_time.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/vendor/connection_pool/lib/connection_pool/monotonic_time.rb b/lib/bundler/vendor/connection_pool/lib/connection_pool/monotonic_time.rb
index 5a9c4a27bb..8210ab4c41 100644
--- a/lib/bundler/vendor/connection_pool/lib/connection_pool/monotonic_time.rb
+++ b/lib/bundler/vendor/connection_pool/lib/connection_pool/monotonic_time.rb
@@ -27,7 +27,7 @@ class Bundler::ConnectionPool
# @!visibility private
def initialize
- @mutex = Mutex.new
+ @mutex = Thread::Mutex.new
@last_time = Time.now.to_f
end