Skip to content

Commit

Permalink
Change protocol version to Path and verify SSL
Browse files Browse the repository at this point in the history
  • Loading branch information
RazvanLiviuVarzaru committed Dec 11, 2024
1 parent 28a9ffb commit 5292148
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common_factories.py
Original file line number Diff line number Diff line change
Expand Up @@ -496,15 +496,15 @@ 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"),
"S3_BUCKET": util.Interpolate(
"%(prop:buildername)s-%(prop:buildnumber)s"
),
"S3_USE_HTTP": "OFF",
"S3_SSL_NO_VERIFY": "ON",
"S3_PROTOCOL_VERSION": "Path",
},
doStepIf=runS3,
)
Expand Down

0 comments on commit 5292148

Please sign in to comment.