Skip to content

Commit

Permalink
Merge pull request #219 from readyvery/test
Browse files Browse the repository at this point in the history
3월25일 배포
  • Loading branch information
1223v authored Mar 24, 2024
2 parents e3d4929 + 08ab8b9 commit b802174
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main_pr.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ame: Main Server Pull-request
name: Main Server Pull-request

on:
pull_request:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public void addTokenCookie(HttpServletResponse response, String name, String val
Cookie cookie = new Cookie(name, value);
cookie.setHttpOnly(httpOnly);
cookie.setPath(path);
cookie.setDomain(jwtConfig.getCookieDomain());
//cookie.setDomain(jwtConfig.getCookieDomain());
cookie.setMaxAge(maxAge);
response.addCookie(cookie);

Expand Down

0 comments on commit b802174

Please sign in to comment.