1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

[openstack] Ensure password sent is of type string

Signed-off-by: Nelvin Driz <nelvindriz@live.com>
This commit is contained in:
Nelvin Driz 2012-05-16 16:11:09 +08:00
parent 8fdf7a8385
commit 9e3716026c

View file

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