summaryrefslogtreecommitdiffstats
path: root/components/pm-subscription-handler/pmsh_service/mod/aai_event_handler.py
diff options
context:
space:
mode:
authorraviteja.karumuri <raviteja.karumuri@est.tech>2021-10-31 19:09:19 +0000
committerraviteja.karumuri <raviteja.karumuri@est.tech>2021-11-05 14:36:17 +0000
commit1685b700294ee0c1eaa1365d67a42861af0fe721 (patch)
tree2a146d34629b18f6000d7cd4fc57b925a1e22982 /components/pm-subscription-handler/pmsh_service/mod/aai_event_handler.py
parent70de6a27b7722e3ed02d8e8a8c7933e053eacabb (diff)
[PMSH] Operational policy and control loop updates
Issue-ID: DCAEGEN2-2913 Signed-off-by: raviteja.karumuri <raviteja.karumuri@est.tech> Change-Id: Ie64383aa55b07ef4387e9b1e8a2414f37901f0da
Diffstat (limited to 'components/pm-subscription-handler/pmsh_service/mod/aai_event_handler.py')
-rwxr-xr-xcomponents/pm-subscription-handler/pmsh_service/mod/aai_event_handler.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/pm-subscription-handler/pmsh_service/mod/aai_event_handler.py b/components/pm-subscription-handler/pmsh_service/mod/aai_event_handler.py
index 6fc4ba90..a00c164a 100755
--- a/components/pm-subscription-handler/pmsh_service/mod/aai_event_handler.py
+++ b/components/pm-subscription-handler/pmsh_service/mod/aai_event_handler.py
@@ -1,5 +1,5 @@
# ============LICENSE_START===================================================
-# Copyright (C) 2020 Nordix Foundation.
+# Copyright (C) 2020-2021 Nordix Foundation.
# ============================================================================
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -78,7 +78,7 @@ def process_aai_events(mr_sub, mr_pub, app, app_conf):
def _process_event(action, nf, mr_pub, app_conf):
if action == AAIEvent.UPDATE.value:
logger.info(f'Update event found for network function {nf.nf_name}')
- app_conf.subscription.create_subscription_on_nfs([nf], mr_pub, app_conf)
+ app_conf.subscription.create_subscription_on_nfs([nf], mr_pub)
elif action == AAIEvent.DELETE.value:
logger.info(f'Delete event found for network function {nf.nf_name}')
NetworkFunction.delete(nf_name=nf.nf_name)