summaryrefslogtreecommitdiffstats
path: root/components/pm-subscription-handler/pmsh_service/pmsh_service_main.py
diff options
context:
space:
mode:
authoremartin <ephraim.martin@est.tech>2020-03-25 10:05:35 +0000
committeremartin <ephraim.martin@est.tech>2020-03-25 11:38:36 +0000
commit03e058dbd9e298eda2ce4fcb3a5babaf08434cf5 (patch)
treeb3ba5a1251f50cdd369ad22439b8745e0aa6c182 /components/pm-subscription-handler/pmsh_service/pmsh_service_main.py
parent8bfed3e53e55f711b1eb7d9cca696b3519658842 (diff)
Handle graceful exit of PMSH1.0.2
Issue-ID: DCAEGEN2-1832 Change-Id: If0362e1927f7013d25f0cf23ade5ce9d2bdea8e3 Signed-off-by: emartin <ephraim.martin@est.tech>
Diffstat (limited to 'components/pm-subscription-handler/pmsh_service/pmsh_service_main.py')
-rwxr-xr-xcomponents/pm-subscription-handler/pmsh_service/pmsh_service_main.py14
1 files changed, 10 insertions, 4 deletions
diff --git a/components/pm-subscription-handler/pmsh_service/pmsh_service_main.py b/components/pm-subscription-handler/pmsh_service/pmsh_service_main.py
index af5aece2..60cf89c0 100755
--- a/components/pm-subscription-handler/pmsh_service/pmsh_service_main.py
+++ b/components/pm-subscription-handler/pmsh_service/pmsh_service_main.py
@@ -17,16 +17,18 @@
# ============LICENSE_END=====================================================
import sys
+from signal import signal, SIGTERM
import mod.aai_client as aai
import mod.pmsh_logging as logger
from mod import db, create_app, launch_api_server
+from mod.aai_event_handler import process_aai_events
from mod.config_handler import ConfigHandler
+from mod.exit_handler import ExitHandler
from mod.pmsh_utils import AppConfig, PeriodicTask
from mod.policy_response_handler import PolicyResponseHandler
from mod.subscription import Subscription, AdministrativeState
from mod.subscription_handler import SubscriptionHandler
-from mod.aai_event_handler import process_aai_events
def main():
@@ -46,17 +48,21 @@ def main():
else AdministrativeState.LOCKED.value
aai_event_thread = PeriodicTask(10, process_aai_events,
- args=(mr_aai_event_sub, sub, policy_mr_pub, app, app_conf))
+ args=(mr_aai_event_sub,
+ sub, policy_mr_pub, app, app_conf))
subscription_handler = SubscriptionHandler(config_handler, administrative_state,
- policy_mr_pub, aai_event_thread, app, app_conf)
+ policy_mr_pub, app, app_conf, aai_event_thread)
policy_response_handler = PolicyResponseHandler(policy_mr_sub, sub.subscriptionName, app)
subscription_handler_thread = PeriodicTask(30, subscription_handler.execute)
policy_response_handler_thread = PeriodicTask(5, policy_response_handler.poll_policy_topic)
-
subscription_handler_thread.start()
policy_response_handler_thread.start()
+ periodic_tasks = [aai_event_thread, subscription_handler_thread,
+ policy_response_handler_thread]
+ signal(SIGTERM, ExitHandler(periodic_tasks=periodic_tasks,
+ subscription_handler=subscription_handler))
launch_api_server(app_conf)
except Exception as e: