Skip to content

Commit

Permalink
[BE] refactor: readonly 제거 (#203)
Browse files Browse the repository at this point in the history
  • Loading branch information
70825 authored Aug 1, 2023
1 parent cbaf099 commit 2894b9d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import org.springframework.transaction.annotation.Transactional;

@Service
@Transactional(readOnly = true)
@Transactional
public class AuthService {

private final MemberService memberService;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import org.springframework.transaction.annotation.Transactional;

@Service
@Transactional(readOnly = true)
@Transactional
public class MemberService {

private final MemberRepository memberRepository;
Expand Down

0 comments on commit 2894b9d

Please sign in to comment.