diff --git a/src/main/java/com/example/sinitto/helloCall/service/HelloCallService.java b/src/main/java/com/example/sinitto/helloCall/service/HelloCallService.java index 2fb812ea..d2081480 100644 --- a/src/main/java/com/example/sinitto/helloCall/service/HelloCallService.java +++ b/src/main/java/com/example/sinitto/helloCall/service/HelloCallService.java @@ -326,11 +326,11 @@ public void cancelAssignedHelloCallIfInProgress(Member member) { List helloCalls = helloCallRepository.findByMemberAndStatus(member, HelloCall.Status.IN_PROGRESS); - changeHelloCall(helloCalls); + updateHelloCallStatusToWaiting(helloCalls); } @Transactional(propagation = Propagation.REQUIRES_NEW) - public void changeHelloCall(List helloCalls) { + public void updateHelloCallStatusToWaiting(List helloCalls) { for (HelloCall helloCall : helloCalls) { helloCall.changeStatusToWaiting(); helloCall.setMember(null);