From 43fb6c9a683efb014c40d5736419cb0085556642 Mon Sep 17 00:00:00 2001 From: rameshiyer27 Date: Tue, 15 Jun 2021 18:22:04 +0100 Subject: Fix CLAMP build failure and kub-participant module startup issue. Initialising ParticipantK8sParameters in the constructor to fix Null pointer Exception in kub-participant module. Constructor cannot use autowired properties. Updated pfDao getFiltered method signature to align with latest code in policy models. Issue-ID: POLICY-3240 Signed-off-by: zrrmmua Change-Id: I9405c1e050b31b153ee53829ffece9f4be27818e --- .../src/main/resources/config/KubernetesParticipantConfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'participant/participant-impl/participant-impl-kubernetes/src/main/resources') diff --git a/participant/participant-impl/participant-impl-kubernetes/src/main/resources/config/KubernetesParticipantConfig.json b/participant/participant-impl/participant-impl-kubernetes/src/main/resources/config/KubernetesParticipantConfig.json index 620e05552..e854a9375 100644 --- a/participant/participant-impl/participant-impl-kubernetes/src/main/resources/config/KubernetesParticipantConfig.json +++ b/participant/participant-impl/participant-impl-kubernetes/src/main/resources/config/KubernetesParticipantConfig.json @@ -49,8 +49,8 @@ "implementation":"org.onap.policy.models.provider.impl.DatabasePolicyModelsProviderImpl", "databaseDriver":"org.mariadb.jdbc.Driver", "databaseUrl":"jdbc:mariadb://localhost:3306/controlloop", - "databaseUser":"admin", - "databasePassword":"passme", + "databaseUser":"policy", + "databasePassword":"P01icY", "persistenceUnit":"ToscaConceptTest" } } -- cgit 1.2.3-korg