try removing Secure from the cookie

This commit is contained in:
Sven Fuchs 2013-02-26 23:07:09 +01:00
parent b314670530
commit 9bda77e757

View File

@ -16,7 +16,7 @@ class Travis::Web::App::AltVersions
private
def set_cookie(headers, alt)
cookie = "alt=#{alt}; Path=/; Secure"
cookie = "alt=#{alt}; path=/"
puts "setting cookie #{cookie}"
headers['Set-Cookie'] = cookie
end