Skip to content

Commit

Permalink
API - v0.1.7-2
Browse files Browse the repository at this point in the history
API - v0.1.7-2
  • Loading branch information
wjdtkdgns authored Sep 1, 2023
2 parents 7bcdfc5 + 0c10146 commit ed2c45e
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 ed2c45e

Please sign in to comment.