Commit c7edbe5b authored by Daniel Black's avatar Daniel Black

MDEV-24366: s3 test postfix - use default for S3_BUCKET

and S3_HOST_NAME.

Required environment variables are now S3_ACCESS_KEY and S3_SECRET_KEY.

Or a running minio instance on localhost:9000.
parent 5e3d3220
......@@ -25,12 +25,12 @@ else
{
if (!$ENV{'S3_HOST_NAME'})
{
return "Environment variable S3_HOST_NAME need to be set";
$ENV{'S3_HOST_NAME'} = "s3.amazonaws.com";
}
if (!$ENV{'S3_BUCKET'})
{
return "Environment variable S3_BUCKET need to be set";
$ENV{'S3_BUCKET'} = "MariaDB";
}
if (!$ENV{'S3_REGION'})
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment