summaryrefslogtreecommitdiff
path: root/lib/rubygems/remote_fetcher.rb
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2021-01-14 13:37:23 +0900
committerNARUSE, Yui <nurse@users.noreply.github.com>2021-01-14 16:44:42 +0900
commitc721e36ceca587d823a765cbbad90911a20cffce (patch)
tree96f70401c4ad1a22c688b6516111083d2d2a905c /lib/rubygems/remote_fetcher.rb
parentd4f5827a6d445941450a2ec5dac5e51e333ef745 (diff)
Merge RubyGems-3.2.4
Diffstat (limited to 'lib/rubygems/remote_fetcher.rb')
-rw-r--r--lib/rubygems/remote_fetcher.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/rubygems/remote_fetcher.rb b/lib/rubygems/remote_fetcher.rb
index 285c80a95f..53e840978c 100644
--- a/lib/rubygems/remote_fetcher.rb
+++ b/lib/rubygems/remote_fetcher.rb
@@ -26,13 +26,15 @@ class Gem::RemoteFetcher
##
# The URI which was being accessed when the exception happened.
- attr_accessor :uri
+ attr_accessor :uri, :original_uri
def initialize(message, uri)
super message
uri = parse_uri(uri)
+ @original_uri = uri.dup
+
uri.password = 'REDACTED' if uri.respond_to?(:password) && uri.password
@uri = uri.to_s