Fix a compilation error 62/113762/1
authorecaiyanlinux <martin.c.yan@est.tech>
Sun, 11 Oct 2020 21:16:10 +0000 (23:16 +0200)
committerecaiyanlinux <martin.c.yan@est.tech>
Sun, 11 Oct 2020 21:16:10 +0000 (23:16 +0200)
Jenkins job is failing due to a compilation error

RicSynchronizationTask is refactored in another commit
for improvement of AsynchRestClient
This place needs update too

Signed-off-by: ecaiyanlinux <martin.c.yan@est.tech>
Issue-ID: CCSDK-2699
Change-Id: Icc806d48ed1dec6b05c99016a1e2207f52cbbdbd

a1-policy-management/src/main/java/org/onap/ccsdk/oran/a1policymanagementservice/tasks/RefreshConfigTask.java

index 84cfe24..0fee08c 100644 (file)
@@ -199,7 +199,7 @@ public class RefreshConfigTask {
     private void removePoliciciesInRic(@Nullable Ric ric) {
         if (ric != null) {
             RicSynchronizationTask synch =
-                    new RicSynchronizationTask(this.a1ClientFactory, this.policyTypes, this.policies, this.services);
+                    new RicSynchronizationTask(a1ClientFactory, policyTypes, policies, services, appConfig);
             synch.run(ric);
         }
     }