Merge pull request #1213 from Keoven/fix/ensure-username-is-string

[openstack] Ensure String Username for Authentication
This commit is contained in:
Wesley Beary 2012-10-18 08:22:16 -07:00
commit a48432a3db
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ module Fog
req_body = {
'auth' => {
'passwordCredentials' => {
'username' => @openstack_username,
'username' => @openstack_username.to_s,
'password' => @openstack_api_key.to_s
}
}