RED-6805: As Operation I want to see why downloads are in an ERROR state

added default method back
This commit is contained in:
yhampe 2024-01-15 14:31:45 +01:00
parent 9907f389b1
commit a04b00c794

View File

@ -70,6 +70,13 @@ public class DownloadStatusPersistenceService {
}
@Transactional
public void updateStatus(String storageId, DownloadStatusValue status) {
downloadStatusRepository.updateStatus(storageId, status);
}
@Transactional
public void updateStatus(DownloadStatusEntity entity, DownloadStatusValue statusValue, long fileSize) {