Skip to content

Commit

Permalink
[openstack] Ensure password sent is of type string
Browse files Browse the repository at this point in the history
Signed-off-by: Nelvin Driz <nelvindriz@live.com>
  • Loading branch information
Keoven committed May 16, 2012
1 parent 8fdf7a8 commit 9e37160
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/fog/openstack.rb
Expand Up @@ -92,7 +92,7 @@ def self.authenticate_v2(options, connection_options = {})
'auth' => {
'passwordCredentials' => {
'username' => @openstack_username,
'password' => @openstack_api_key
'password' => @openstack_api_key.to_s
}
}
}
Expand Down

0 comments on commit 9e37160

Please sign in to comment.