Skip to content

Commit

Permalink
HOTFIX: 중복 저장 문제 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
yechan-kim committed Aug 1, 2024
1 parent 823f19b commit 88a634f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ public CommitResponse execute(HttpServletRequest request) {
executor.shutdown();

user.updateLastCommitUpdateTime(LocalDateTime.now());
userRepository.save(user);

saveCommits(user);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ public CommitResponse execute(HttpServletRequest request) {
executor.shutdown();

user.updateLastCommitUpdateTime(LocalDateTime.now());
userRepository.save(user);

saveCommits(user);

Expand Down

0 comments on commit 88a634f

Please sign in to comment.