From 4148d501c76d733a46ac21aa3ccd864d1f9d0167 Mon Sep 17 00:00:00 2001 From: Joe Lynch Date: Fri, 20 Sep 2024 13:53:22 +0000 Subject: [PATCH] clickhouse: dont log error when keeper_map path does not exist This will always happen if there is no KeeperMap tables. --- astacus/coordinator/plugins/clickhouse/steps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/astacus/coordinator/plugins/clickhouse/steps.py b/astacus/coordinator/plugins/clickhouse/steps.py index 377b2238..acef5a6f 100644 --- a/astacus/coordinator/plugins/clickhouse/steps.py +++ b/astacus/coordinator/plugins/clickhouse/steps.py @@ -197,7 +197,7 @@ async def run_step(self, cluster: Cluster, context: StepsContext) -> Sequence[Ke try: children = await connection.get_children(self.keeper_map_path_prefix, watch=change_watch) except NoNodeError: - logger.exception("KeeperMap path %s not found", self.keeper_map_path_prefix) + # The path doesn't exist, no keeper map tables to retrieve return [] tables = []