Skip to content

Commit

Permalink
fix: user sync helper transaction 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
psychology50 committed Mar 26, 2024
1 parent bc97765 commit c7f3788
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.tuple.Pair;
import org.springframework.transaction.annotation.Transactional;

@Slf4j
@Helper
Expand All @@ -24,7 +23,6 @@ public class UserSyncHelper {
* @return Pair<Boolean, String> : 이미 κ°€μž…λœ νšŒμ›μΈμ§€ μ—¬λΆ€ (TRUE: κ°€μž…λ˜μ§€ μ•Šμ€ νšŒμ›, FALSE: κ°€μž…λœ νšŒμ›), κ°€μž…λœ νšŒμ›μΈ 경우 νšŒμ› ID λ°˜ν™˜
* @throws UserErrorException : 이미 일반 νšŒμ›κ°€μž…μ„ ν•œ μœ μ €μΈ 경우
*/
@Transactional(readOnly = true)
public Pair<Boolean, String> isSignedUserWhenGeneral(String phone) {
User user;
try {
Expand Down

0 comments on commit c7f3788

Please sign in to comment.