From 9f96007ee7e8c5923ac41c3fcc27b4f856a47121 Mon Sep 17 00:00:00 2001 From: jiasirui Date: Tue, 14 Mar 2023 15:47:58 +0800 Subject: [PATCH] fix:select es index key from db Change-Id: I94c4a804004a0293959cd675f15f1c880606ca24 --- venus/modules/custom_config/controller.py | 2 +- venus/service.py | 9 +++++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/venus/modules/custom_config/controller.py b/venus/modules/custom_config/controller.py index 29d7694..c2751d1 100644 --- a/venus/modules/custom_config/controller.py +++ b/venus/modules/custom_config/controller.py @@ -27,7 +27,7 @@ class CustomConfigController(wsgi.Controller): @wsgi.wrap_check_policy def get_config(self, req): result = dict() - result["log_save_days"] = self.config_api.get_config("log_save_days") + result["log_save_days"] = self.config_api.get_config("es_index_length") return result @wsgi.wrap_check_policy diff --git a/venus/service.py b/venus/service.py index 20cb579..fb8d86c 100644 --- a/venus/service.py +++ b/venus/service.py @@ -163,7 +163,8 @@ class Service(service.Service): for x in self.timers: try: x.stop() - except Exception: + except Exception as e: + LOG.error(e) pass self.timers = [] super(Service, self).stop() @@ -172,7 +173,8 @@ class Service(service.Service): for x in self.timers: try: x.wait() - except Exception: + except Exception as e: + LOG.error(e) pass if self.rpcserver: self.rpcserver.wait() @@ -312,6 +314,9 @@ def wait(): _launcher.wait() except KeyboardInterrupt: _launcher.stop() + except Exception as e: + LOG.error(e) + _launcher.stop() class Launcher(object):