From 529214878e0ce7338898223d2cac0793bda6d7b9 Mon Sep 17 00:00:00 2001 From: Razvan-Liviu Varzaru Date: Wed, 11 Dec 2024 12:20:24 +0200 Subject: [PATCH] Change protocol version to Path and verify SSL --- common_factories.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common_factories.py b/common_factories.py index 58128fc8..834be0bc 100644 --- a/common_factories.py +++ b/common_factories.py @@ -496,7 +496,7 @@ def addS3Tests(factory, mtrDbPool): dbpool=mtrDbPool, autoCreateTables=True, env={ - "S3_HOST_NAME": "135.181.42.57", + "S3_HOST_NAME": "minio.mariadb.org", "S3_PORT": "443", "S3_ACCESS_KEY": util.Interpolate("%(secret:minio_access_key)s"), "S3_SECRET_KEY": util.Interpolate("%(secret:minio_secret_key)s"), @@ -504,7 +504,7 @@ def addS3Tests(factory, mtrDbPool): "%(prop:buildername)s-%(prop:buildnumber)s" ), "S3_USE_HTTP": "OFF", - "S3_SSL_NO_VERIFY": "ON", + "S3_PROTOCOL_VERSION": "Path", }, doStepIf=runS3, )