From 11487e983da6e1cc2fae8ea266dac0960a89010d Mon Sep 17 00:00:00 2001 From: Yaroslava Lukoyanova Date: Mon, 18 Mar 2024 20:09:08 +0300 Subject: [PATCH] [#196] Removed profile name from Boto3 client --- src/frostfs_testlib/s3/boto3_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frostfs_testlib/s3/boto3_client.py b/src/frostfs_testlib/s3/boto3_client.py index bdb177e..cb1ec28 100644 --- a/src/frostfs_testlib/s3/boto3_client.py +++ b/src/frostfs_testlib/s3/boto3_client.py @@ -46,7 +46,7 @@ class Boto3ClientWrapper(S3ClientWrapper): self, access_key_id: str, secret_access_key: str, s3gate_endpoint: str, profile: str = "default" ) -> None: self.boto3_client: S3Client = None - self.session = boto3.Session(profile_name=profile) + self.session = boto3.Session() self.config = Config( retries={ "max_attempts": MAX_REQUEST_ATTEMPTS,