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:
David Heinemeier Hansson
2006-04-04 16:31:56 +00:00
parent b818cd9216
commit 4cee09e7a8
2 changed files with 5 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
*SVN*
* Do not convert driver options to strings (#4499)
*1.1.0* (March 27th, 2005)
* Make ActiveWebService::Struct type reloadable

View File

@@ -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