Remove MariaDB support 59/139959/1
authoradheli.tavares <adheli.tavares@est.tech>
Thu, 16 Jan 2025 14:14:55 +0000 (14:14 +0000)
committeradheli.tavares <adheli.tavares@est.tech>
Thu, 16 Jan 2025 14:15:01 +0000 (14:15 +0000)
- change configurations to use PostgreSQL as default

Issue-ID: POLICY-5196
Change-Id: Ia1728eaa6d6b177a07eaf27d279731ba5120ec7e
Signed-off-by: adheli.tavares <adheli.tavares@est.tech>
controlloop/common/eventmanager/src/main/java/org/onap/policy/controlloop/ophistory/OperationHistoryDataManagerParams.java

index 1ea8376..10c6367 100644 (file)
@@ -3,7 +3,7 @@
  * ONAP
  * ================================================================================
  * Copyright (C) 2020-2021 AT&T Intellectual Property. All rights reserved.
- * Modifications Copyright (C) 2023-2024 Nordix Foundation.
+ * Modifications Copyright (C) 2023-2025 Nordix Foundation.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -41,7 +41,7 @@ import org.onap.policy.common.parameters.annotations.NotNull;
 @AllArgsConstructor
 public class OperationHistoryDataManagerParams {
     public static final String DEFAULT_PU = "OperationsHistoryPU";
-    public static final String DEFAULT_DRIVER = "org.mariadb.jdbc.Driver";
+    public static final String DEFAULT_DRIVER = "org.postgresql.jdbc.Driver";
 
     @NotBlank
     private String url;