mirror of
https://github.com/clearml/clearml
synced 2025-04-05 05:10:06 +00:00
Specify an endpoint_url when creating S3 resource service (#679)
* Specify an endppoint_url when creating S3 resource service * code review Co-authored-by: Zied ANDOLSI <zandolsi@prophesee.ai>
This commit is contained in:
parent
6b56b3cfa2
commit
3f9cf400fa
@ -1548,7 +1548,8 @@ class _Boto3Driver(_Driver):
|
||||
}
|
||||
|
||||
boto_session = boto3.Session(conf.key, conf.secret, aws_session_token=conf.token)
|
||||
boto_resource = boto_session.resource('s3', conf.region)
|
||||
endpoint = (('https://' if cfg.secure else 'http://') + cfg.host) if (conf.host and len(conf.host.split(':')) > 1) else None
|
||||
boto_resource = boto_session.resource('s3', region_name=conf.region, endpoint_url=endpoint)
|
||||
bucket = boto_resource.Bucket(bucket_name)
|
||||
bucket.put_object(Key=filename, Body=six.b(json.dumps(data)))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user