Skip to content
Snippets Groups Projects
Commit a8b0695c authored by Waleed Akbar's avatar Waleed Akbar
Browse files

Updated Analytics Backed

- Add Exception
parent bba35aa9
No related branches found
No related tags found
2 merge requests!359Release TeraFlowSDN 5.0,!318Resolve "(CTTC) Analytics Module Enhancements"
...@@ -153,8 +153,8 @@ class AnalyticsBackendService(GenericGrpcService): ...@@ -153,8 +153,8 @@ class AnalyticsBackendService(GenericGrpcService):
del self.active_streamers[analyzer_uuid] del self.active_streamers[analyzer_uuid]
LOGGER.info(f"Streamer with analyzer_uuid '{analyzer_uuid}' has been trerminated sucessfully.") LOGGER.info(f"Streamer with analyzer_uuid '{analyzer_uuid}' has been trerminated sucessfully.")
return True return True
except Exception as e: except:
LOGGER.error("Failed to stop Dask Streamer. ERROR: {:}".format(e)) LOGGER.exception("Failed to stop Dask Streamer. ERROR: {:}".format(e))
return False return False
def close(self): def close(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment