diff options
author | ecaiyanlinux <martin.c.yan@est.tech> | 2020-10-11 23:16:10 +0200 |
---|---|---|
committer | ecaiyanlinux <martin.c.yan@est.tech> | 2020-10-11 23:16:10 +0200 |
commit | 672d820b5807e6b2f9378359e8de817622d0d31c (patch) | |
tree | 56a17e5212b83a4b2162da01878365d2a555d7cf /a1-policy-management | |
parent | d0d1f2b91278124a9782d7b516ae7b784290f68f (diff) |
Fix a compilation error
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
Diffstat (limited to 'a1-policy-management')
-rw-r--r-- | a1-policy-management/src/main/java/org/onap/ccsdk/oran/a1policymanagementservice/tasks/RefreshConfigTask.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/a1-policy-management/src/main/java/org/onap/ccsdk/oran/a1policymanagementservice/tasks/RefreshConfigTask.java b/a1-policy-management/src/main/java/org/onap/ccsdk/oran/a1policymanagementservice/tasks/RefreshConfigTask.java index 84cfe24a..0fee08cf 100644 --- a/a1-policy-management/src/main/java/org/onap/ccsdk/oran/a1policymanagementservice/tasks/RefreshConfigTask.java +++ b/a1-policy-management/src/main/java/org/onap/ccsdk/oran/a1policymanagementservice/tasks/RefreshConfigTask.java @@ -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); } } |