[rubygems/rubygems] Error tracing should be printed to stderr
https://github.com/rubygems/rubygems/commit/23178f7d7b
This commit is contained in:
parent
a0f10a973f
commit
72db2e00d4
@ -81,7 +81,7 @@ module Bundler
|
|||||||
def trace(e, newline = nil, force = false)
|
def trace(e, newline = nil, force = false)
|
||||||
return unless debug? || force
|
return unless debug? || force
|
||||||
msg = "#{e.class}: #{e.message}\n#{e.backtrace.join("\n ")}"
|
msg = "#{e.class}: #{e.message}\n#{e.backtrace.join("\n ")}"
|
||||||
tell_me(msg, nil, newline)
|
tell_err(msg, nil, newline)
|
||||||
end
|
end
|
||||||
|
|
||||||
def silence(&blk)
|
def silence(&blk)
|
||||||
|
@ -922,7 +922,8 @@ The checksum of /versions does not match the checksum provided by the server! So
|
|||||||
Gem::Dependency.new("activerecord", "= 2.3.2"),
|
Gem::Dependency.new("activerecord", "= 2.3.2"),
|
||||||
Gem::Dependency.new("actionmailer", "= 2.3.2"),
|
Gem::Dependency.new("actionmailer", "= 2.3.2"),
|
||||||
Gem::Dependency.new("activeresource", "= 2.3.2")]
|
Gem::Dependency.new("activeresource", "= 2.3.2")]
|
||||||
expect(out).to include(<<-E.strip).and include("rails-2.3.2 from rubygems remote at #{source_uri}/ has either corrupted API or lockfile dependencies")
|
expect(out).to include("rails-2.3.2 from rubygems remote at #{source_uri}/ has either corrupted API or lockfile dependencies")
|
||||||
|
expect(err).to include(<<-E.strip)
|
||||||
Bundler::APIResponseMismatchError: Downloading rails-2.3.2 revealed dependencies not in the API or the lockfile (#{deps.map(&:to_s).join(", ")}).
|
Bundler::APIResponseMismatchError: Downloading rails-2.3.2 revealed dependencies not in the API or the lockfile (#{deps.map(&:to_s).join(", ")}).
|
||||||
Either installing with `--full-index` or running `bundle update rails` should fix the problem.
|
Either installing with `--full-index` or running `bundle update rails` should fix the problem.
|
||||||
E
|
E
|
||||||
|
@ -89,7 +89,10 @@ RSpec.describe "fetching dependencies with a not available mirror", :realworld =
|
|||||||
bundle :install, :artifice => nil, :raise_on_error => false
|
bundle :install, :artifice => nil, :raise_on_error => false
|
||||||
|
|
||||||
expect(out).to include "Fetching source index from #{mirror}/"
|
expect(out).to include "Fetching source index from #{mirror}/"
|
||||||
expect(err.split("\n").count).to eq(4)
|
expect(err).to include "Retrying fetcher due to error (2/4): Bundler::HTTPError Could not fetch specs from #{mirror}/ due to underlying error <Errno::ECONNREFUSED: Failed to open TCP connection to #{host}:#{@mirror_port} (Connection refused - connect(2)"
|
||||||
|
expect(err).to include "Retrying fetcher due to error (3/4): Bundler::HTTPError Could not fetch specs from #{mirror}/ due to underlying error <Errno::ECONNREFUSED: Failed to open TCP connection to #{host}:#{@mirror_port} (Connection refused - connect(2)"
|
||||||
|
expect(err).to include "Retrying fetcher due to error (4/4): Bundler::HTTPError Could not fetch specs from #{mirror}/ due to underlying error <Errno::ECONNREFUSED: Failed to open TCP connection to #{host}:#{@mirror_port} (Connection refused - connect(2)"
|
||||||
|
expect(err).to include "Could not fetch specs from #{mirror}/ due to underlying error <Errno::ECONNREFUSED: Failed to open TCP connection to #{host}:#{@mirror_port} (Connection refused - connect(2)"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user