From 9de4dfc5af05dbb072e3b108302800132cf3ba5e Mon Sep 17 00:00:00 2001 From: yhampe Date: Mon, 15 Jan 2024 14:31:45 +0100 Subject: [PATCH] RED-6805: As Operation I want to see why downloads are in an ERROR state added default method back --- .../persistence/DownloadStatusPersistenceService.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/service/persistence/DownloadStatusPersistenceService.java b/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/service/persistence/DownloadStatusPersistenceService.java index ad056533f..fb706f4b8 100644 --- a/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/service/persistence/DownloadStatusPersistenceService.java +++ b/persistence-service-v1/persistence-service-processor-v1/src/main/java/com/iqser/red/service/persistence/management/v1/processor/service/persistence/DownloadStatusPersistenceService.java @@ -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) {