diff --git a/archive/Events and Hacks/Tech Talks/ContainerDemo/example-voting-app/vote/app.py b/archive/Events and Hacks/Tech Talks/ContainerDemo/example-voting-app/vote/app.py index 80f5fd2d..03ef1aea 100644 --- a/archive/Events and Hacks/Tech Talks/ContainerDemo/example-voting-app/vote/app.py +++ b/archive/Events and Hacks/Tech Talks/ContainerDemo/example-voting-app/vote/app.py @@ -38,7 +38,7 @@ def hello(): hostname=hostname, vote=vote, )) - resp.set_cookie('voter_id', voter_id) + resp.set_cookie('voter_id', voter_id, secure=True, httponly=True, samesite='Lax') return resp