Skip to content

Commit

Permalink
[fix] 차단 풀기 usecase identifier 재정의 (#158)
Browse files Browse the repository at this point in the history
* [fix] 차단 풀기 usecase identifier 재정의 #157

* [chore] log 지우기 #157

---------

Co-authored-by: 정상훈 <[email protected]>
  • Loading branch information
wjdtkdgns and 정상훈 authored Sep 1, 2023
1 parent 0093c88 commit 0c10146
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class DeleteBlockUseCase {
@Transactional
@DistributedLock(
lockType = DistributedLockType.BLOCK,
identifier = {"fromUserId, toUserId"})
identifier = {"fromUserId", "toUserId"})
public BlockResponse execute(BlockRequest request, Long fromUserId, Long toUserId) {
Long userId = SecurityUtil.getCurrentUserId();
validateExecution(userId, request);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
import java.util.Arrays;
import java.util.List;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
Expand All @@ -22,7 +21,6 @@
@Component
@Order(Ordered.HIGHEST_PRECEDENCE + 1)
@RequiredArgsConstructor
@Slf4j
public class DistributedLockAop {
private final LockManager lockManager;

Expand Down

0 comments on commit 0c10146

Please sign in to comment.