mirror of
https://github.com/github/rails.git
synced 2026-01-29 16:28:09 -05:00
Do not convert driver options to strings (closes #4499) [Kent]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4151 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
*SVN*
|
||||
|
||||
* Do not convert driver options to strings (#4499)
|
||||
|
||||
*1.1.0* (March 27th, 2005)
|
||||
|
||||
* Make ActiveWebService::Struct type reloadable
|
||||
|
||||
@@ -50,7 +50,7 @@ module ActionWebService # :nodoc:
|
||||
@soap_action_base ||= URI.parse(endpoint_uri).path
|
||||
@driver = create_soap_rpc_driver(api, endpoint_uri)
|
||||
@driver_options.each do |name, value|
|
||||
@driver.options[name.to_s] = value.to_s
|
||||
@driver.options[name.to_s] = value
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user