From 264b2e8be7a15609866635dfcc30a1ebc169d63c Mon Sep 17 00:00:00 2001 From: Polina Bungina Date: Mon, 15 Jan 2024 17:35:25 +0100 Subject: [PATCH] Re-enable SSL for MacOS GH action runners --- features/environment.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/features/environment.py b/features/environment.py index db10c93d..a0367657 100644 --- a/features/environment.py +++ b/features/environment.py @@ -1073,8 +1073,6 @@ def before_all(context): context.keyfile = os.path.join(context.pctl.output_dir, 'patroni.key') context.certfile = os.path.join(context.pctl.output_dir, 'patroni.crt') try: - if sys.platform == 'darwin' and 'GITHUB_ACTIONS' in os.environ: - raise Exception with open(os.devnull, 'w') as null: ret = subprocess.call(['openssl', 'req', '-nodes', '-new', '-x509', '-subj', '/CN=batman.patroni', '-addext', 'subjectAltName=IP:127.0.0.1', '-keyout', context.keyfile,