Update notifications service to enable certificate validation
[osm/POL.git] / osm_policy_module / alarming / service.py
index dbc375e..f5a5d9e 100644 (file)
@@ -22,7 +22,6 @@
 # For those usages not covered by the Apache License, Version 2.0 please
 # contact: bdiaz@whitestack.com or glavado@whitestack.com
 ##
-import asyncio
 import json
 import logging
 import operator
@@ -47,14 +46,11 @@ log = logging.getLogger(__name__)
 
 
 class AlarmingService:
-    def __init__(self, config: Config, loop=None):
+    def __init__(self, config: Config):
         self.conf = config
-        if not loop:
-            loop = asyncio.get_event_loop()
-        self.loop = loop
         self.db_client = CommonDbClient(config)
-        self.mon_client = MonClient(config, loop=self.loop)
-        self.lcm_client = LcmClient(config, loop=self.loop)
+        self.mon_client = MonClient(config)
+        self.lcm_client = LcmClient(config)
 
     async def configure_vnf_alarms(self, nsr_id: str, vnf_member_index=None):
         log.info("Configuring vnf alarms for network service %s", nsr_id)
@@ -294,7 +290,6 @@ class AlarmingService:
                                         url=action.url,
                                         data=json.dumps(payload),
                                         headers=headers,
-                                        verify=False,
                                         timeout=alert_timeout,
                                     )
                                     log.info("Response %s", resp)