Skip to content

Commit eaddc44

Browse files
HttpOnly flag removed from cookie set. We are doing this as a risk vs reward play to clear a path for Javascript set redundant cookies.
1 parent 5ffe526 commit eaddc44

5 files changed

Lines changed: 1 addition & 2 deletions

File tree

dist/originOverride.zip

-11 Bytes
Binary file not shown.

dist/viewerRequest.zip

-15 Bytes
Binary file not shown.

dist/viewerResponse.zip

-9 Bytes
Binary file not shown.

helpers/http.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ export const redirect302Response = function (redirect_location, token) {
152152
"set-cookie": [
153153
{
154154
key: "Set-Cookie",
155-
value: `crowdhandler=${token}; path=/; Secure; HttpOnly`,
155+
value: `crowdhandler=${token}; path=/; Secure`,
156156
},
157157
],
158158
"cache-control": [

serverless.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
# Happy Coding!
1313

1414
service: crowdhandler-cloudfront-integration
15-
frameworkVersion: '2'
1615

1716
# Webpack
1817
custom:

0 commit comments

Comments
 (0)