From: Jozsef Csongvai Date: Mon, 31 Oct 2022 20:25:57 +0000 (-0400) Subject: Add @transactional to delete data-dictionary X-Git-Tag: 1.5.0~2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=46febe27ee933031db06c002d14aa1c911048fe1;hp=61dcd85034ea44b421dfe6a74e46fdc2a749f5af;p=ccsdk%2Fcds.git Add @transactional to delete data-dictionary The delete endpoint was failing due to missing annotation. Issue-ID: CCSDK-3798 Change-Id: Ifa857a4842b9528d1e645e1fdeb6781121a930f7 Signed-off-by: Jozsef Csongvai --- diff --git a/ms/blueprintsprocessor/modules/inbounds/designer-api/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/designer/api/repository/ResourceDictionaryRepository.kt b/ms/blueprintsprocessor/modules/inbounds/designer-api/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/designer/api/repository/ResourceDictionaryRepository.kt index 703542f60..e44e4e8c7 100644 --- a/ms/blueprintsprocessor/modules/inbounds/designer-api/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/designer/api/repository/ResourceDictionaryRepository.kt +++ b/ms/blueprintsprocessor/modules/inbounds/designer-api/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/designer/api/repository/ResourceDictionaryRepository.kt @@ -20,6 +20,7 @@ import org.onap.ccsdk.cds.blueprintsprocessor.designer.api.domain.ResourceDictio import org.springframework.data.jpa.repository.JpaRepository import org.springframework.data.jpa.repository.Query import org.springframework.stereotype.Repository +import javax.transaction.Transactional /** * ResourceMappingRepository.java Purpose: Provide Configuration Generator ResourceMappingRepository @@ -59,6 +60,7 @@ interface ResourceDictionaryRepository : JpaRepository