Skip to content
Snippets Groups Projects
Commit 2d708543 authored by Chris Hines's avatar Chris Hines
Browse files

samesite=none for the twsproxy cookie as well

parent e3f9c5f8
No related branches found
No related tags found
2 merge requests!90I think there is a problem with multiple threads creating multiple sessions...,!89Dev
Pipeline #63673 passed
......@@ -651,7 +651,7 @@ class CreateTunnel(Resource):
localbind=localbind, authtok=authtok)
response = make_response(json.dumps({'localport':port}),200)
response.mimetype = 'application/json'
response.set_cookie('twsproxyauth', authtok, secure=True)
response.set_cookie('twsproxyauth', authtok, secure=True, samesite=None)
return response
except AppParamsException as e:
import traceback
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment