Fix for retry mechanism on concurrent CmHandle registration
[cps.git] / cps-ri / src / test / java / org / onap / cps / TestApplication.java
index 0d1df45..075a241 100644 (file)
 package org.onap.cps;
 
 import org.springframework.boot.autoconfigure.SpringBootApplication;
+import org.springframework.retry.annotation.EnableRetry;
 
 /**
  * The @SpringBootApplication annotated class is required in order to run tests
  * marked with @SpringBootTest annotation.
  */
 @SpringBootApplication(scanBasePackages = "org.onap.cps.spi")
+@EnableRetry
 public class TestApplication {
 }