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

[Vcloud] Adding case insensitivity for set-cookie header

This commit is contained in:
Garima Singh 2013-08-02 12:44:23 +01:00
parent db5d9f0813
commit b7f8db97b1

View file

@ -231,7 +231,7 @@ module Fog
# header from that call.
def do_login
@login_results = login
@cookie = @login_results.headers['Set-Cookie']
@cookie = @login_results.headers['Set-Cookie'] || @login_results.headers['set-cookie']
end
def ensure_unparsed(uri)