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:
parent
db5d9f0813
commit
b7f8db97b1
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue