From 2d80b02cb230997f091a2b5aa526bba4a9ed47b5 Mon Sep 17 00:00:00 2001 From: Alexander Burmak Date: Mon, 27 Nov 2023 15:33:06 +0300 Subject: [PATCH] Fix AttributeError: module 'ssl' has no attribute 'TLSVersion' (#81) --- 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")