mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/xmlrpc/client.rb (XMLRPC::Client#do_rpc): Improving the error
message for Content-Type check failures. [ruby-core:12163] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13768 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
3c15e9efe3
commit
6f8537cf7f
2 changed files with 7 additions and 2 deletions
|
@ -549,9 +549,9 @@ module XMLRPC
|
|||
ct = parse_content_type(resp["Content-Type"]).first
|
||||
if ct != "text/xml"
|
||||
if ct == "text/html"
|
||||
raise "Wrong content-type: \n#{data}"
|
||||
raise "Wrong content-type (received '#{ct}' but expected 'text/xml'): \n#{data}"
|
||||
else
|
||||
raise "Wrong content-type"
|
||||
raise "Wrong content-type (received '#{ct}' but expected 'text/xml')"
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue