We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5853d32 commit 37f5902Copy full SHA for 37f5902
modules/minio/testcontainers/minio/__init__.py
@@ -76,7 +76,7 @@ def get_client(self, **kwargs) -> Minio:
76
host_ip = self.get_container_host_ip()
77
exposed_port = self.get_exposed_port(self.port)
78
return Minio(
79
- f"{host_ip}:{exposed_port}",
+ endpoint=f"{host_ip}:{exposed_port}",
80
access_key=self.access_key,
81
secret_key=self.secret_key,
82
secure=False,
0 commit comments