Merge pull request #29762 from kssenii/update-minio

May be fix s3 tests
This commit is contained in:
Kseniia Sumarokova 2021-10-06 16:33:54 +03:00 committed by GitHub
commit e88005c6f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -2,7 +2,9 @@ version: '2.3'
services:
minio1:
image: minio/minio
# Newer version of minio results in such errors:
# "AWSErrorMarshaller: Encountered AWSError 'InternalError': We encountered an internal error, please try again"
image: minio/minio:RELEASE.2021-09-23T04-46-24Z
volumes:
- data1-1:/data1
- ${MINIO_CERTS_DIR:-}:/certs

View File

@ -28,7 +28,6 @@ class SafeThread(threading.Thread):
if self.exception:
raise self.exception
SCRIPT_DIR = os.path.dirname(os.path.realpath(__file__))
CONFIG_PATH = os.path.join(SCRIPT_DIR, './{}/node/configs/config.d/storage_conf.xml'.format(get_instances_dir()))