From f0993de1c20b5618df6915ef72321b0923c70874 Mon Sep 17 00:00:00 2001 From: sodacris Date: Tue, 12 Nov 2024 09:03:08 +0800 Subject: [PATCH] [ruby/uri] improve error message https://github.com/ruby/uri/commit/1c6e81b721 --- lib/uri/generic.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/uri/generic.rb b/lib/uri/generic.rb index 634da49fe9..6fd0f7c420 100644 --- a/lib/uri/generic.rb +++ b/lib/uri/generic.rb @@ -1540,7 +1540,7 @@ module URI else unless proxy_uri = env[name] if proxy_uri = env[name.upcase] - warn 'The environment variable HTTP_PROXY is discouraged. Use http_proxy.', uplevel: 1 + warn 'The environment variable HTTP_PROXY is discouraged. Please use http_proxy instead.', uplevel: 1 end end end