mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
Merge pull request #1213 from Keoven/fix/ensure-username-is-string
[openstack] Ensure String Username for Authentication
This commit is contained in:
commit
a48432a3db
1 changed files with 1 additions and 1 deletions
|
@ -95,7 +95,7 @@ module Fog
|
|||
req_body = {
|
||||
'auth' => {
|
||||
'passwordCredentials' => {
|
||||
'username' => @openstack_username,
|
||||
'username' => @openstack_username.to_s,
|
||||
'password' => @openstack_api_key.to_s
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue