From 0cb3dec31d5a42ef00e89038aef1625179c8ac00 Mon Sep 17 00:00:00 2001 From: ToineSiebelink Date: Thu, 23 Jan 2025 12:34:40 +0000 Subject: Fix for cm handles stuck in LOCKED during registration - Additional Error logging when cm handles fail module sync - Swallow already defined exception upon schema and/or anchor creation - Updated integration test to try to reproduce the problem (but couldn't) - Ignored integration tests that depend/affected by race conditions (they are useful for troubleshooting but not for pipeline checks) - Removed last remnants of springboot retry annotation option (incl dependencies) Issue-ID: CPS-2576 Change-Id: I910e802268332f955134c043bd1b46a7ec57233b Signed-off-by: ToineSiebelink --- cps-application/src/main/java/org/onap/cps/Application.java | 2 -- 1 file changed, 2 deletions(-) (limited to 'cps-application') diff --git a/cps-application/src/main/java/org/onap/cps/Application.java b/cps-application/src/main/java/org/onap/cps/Application.java index 053139fcc8..62103bf368 100644 --- a/cps-application/src/main/java/org/onap/cps/Application.java +++ b/cps-application/src/main/java/org/onap/cps/Application.java @@ -22,9 +22,7 @@ package org.onap.cps; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; -import org.springframework.retry.annotation.EnableRetry; -@EnableRetry @SpringBootApplication public class Application { public static void main(final String[] args) { -- cgit