From 8f864c532b0769432d0154366146c18db7eda0c2 Mon Sep 17 00:00:00 2001 From: Alexander Burmak Date: Mon, 27 Nov 2023 13:01:24 +0300 Subject: [PATCH] Fix AttributeError: module 'ssl' has no attribute 'TLSVersion' --- ch_tools/monrun_checks_keeper/keeper_commands.py | 1 - 1 file changed, 1 deletion(-) diff --git a/ch_tools/monrun_checks_keeper/keeper_commands.py b/ch_tools/monrun_checks_keeper/keeper_commands.py index 53bdd538..38f381b2 100644 --- a/ch_tools/monrun_checks_keeper/keeper_commands.py +++ b/ch_tools/monrun_checks_keeper/keeper_commands.py @@ -18,7 +18,6 @@ CH_DBMS_DEFAULT_PATH = "/var/lib/clickhouse/snapshots" context = ssl.create_default_context() -context.minimum_version = ssl.TLSVersion.TLSv1_2 @command("alive")