Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class CompanyImageService {
private final CompanyRepository companyRepository;
private final CompanyImageFileHandler companyImageFileHandler;

@Transactional(readOnly = true)
@Transactional
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

기존에 새로운 파일 업로드를 위한 발급 로직에서 파일 변경 시 로직이 추가되면서 발생한 사이드 이펙트로 판단되네요.
원인 파악 및 코드 수정해주셔서 감사합니다👍👍

public CompanyImageUploadUrlIssueResponse issueCompanyImageUploadUrl(final UUID companyId, final String fileName) {
final Optional<Company> companyOptional = companyRepository.findById(companyId);

Expand Down
Loading