summaryrefslogtreecommitdiffstats
path: root/components/pm-subscription-handler/pmsh_service/mod/exit_handler.py
diff options
context:
space:
mode:
authorERIMROB <robertas.rimkus@est.tech>2020-04-01 17:54:19 +0100
committerERIMROB <robertas.rimkus@est.tech>2020-04-02 12:10:25 +0100
commite97cde0ff09bc602a1ff665f573786c4f5a746ba (patch)
treead7f9d6645903f9431eb8b5fe404dd7ccdc6c4bf /components/pm-subscription-handler/pmsh_service/mod/exit_handler.py
parentc3ab68bdccbff73659ceb1fe196e2d53d141e38f (diff)
[PMSH] Fix bug of deactivation during undeploy1.0.3
Signed-off-by: ERIMROB <robertas.rimkus@est.tech> Issue-ID: DCAEGEN2-2175 Change-Id: I70998a0d643b899c1b4d3ba86346297271a9b276
Diffstat (limited to 'components/pm-subscription-handler/pmsh_service/mod/exit_handler.py')
-rwxr-xr-xcomponents/pm-subscription-handler/pmsh_service/mod/exit_handler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/pm-subscription-handler/pmsh_service/mod/exit_handler.py b/components/pm-subscription-handler/pmsh_service/mod/exit_handler.py
index adc4941c..3cb05daa 100755
--- a/components/pm-subscription-handler/pmsh_service/mod/exit_handler.py
+++ b/components/pm-subscription-handler/pmsh_service/mod/exit_handler.py
@@ -42,7 +42,7 @@ class ExitHandler:
logger.debug(f'Cancelling periodic task with thread name: {thread.name}.')
thread.cancel()
current_sub.administrativeState = AdministrativeState.LOCKED.value
- current_sub.process_subscription(self.subscription_handler.current_nfs,
+ current_sub.process_subscription(current_sub.get_network_functions(),
self.subscription_handler.mr_pub,
self.subscription_handler.app_conf)
ExitHandler.shutdown_signal_received = True