[BE] Hotfix/#619 핀 삭제 시 토픽의 핀 개수가 업데이트되지 않는 버그 해결 #621
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
작업 대상
📄 작업 내용
#619 참조 부탁드립니다.
간단히 말하면
pin.decreaseTopicPinCount()
에 대한 변경 감지가 발생하지 않는 문제입니다.위 코드에서, deleteXXX 메서드들에 의해
clearAutomatically = true
로 설정된 네이티브 쿼리가 발생합니다.이 때 영속성 컨텍스트가 데이터베이스의 내용과 동일하게 초기화됩니다.
따라서 윗줄에서 pin.decreaseTopicPinCount()를 해주었어도,
커밋하는 시점에서는 영속성 컨텍스트에 해당 변경사항이 반영되지 않는 것입니다.
그래서 해당 변경을 반영할 수 있도록 flush를 추가했습니다.
🙋🏻 주의 사항
실제 운영 환경에 바로 노출되는 부분이므로 main에 대한 hotfix 먼저 올립니다.
해당 브랜치 머지 후, dev 브랜치 작업하면 main pull 받은 후 작업부탁드려용
스크린샷
📎 관련 이슈
closed #619
레퍼런스