oracle object storage: fix object storage endpoint for custom endpoints

This commit is contained in:
Manoj Ghosh 2023-12-15 02:13:35 -08:00 committed by Nick Craig-Wood
parent 8b8156f7c3
commit 6ccbebd903
1 changed files with 3 additions and 0 deletions

View File

@ -70,6 +70,9 @@ func newObjectStorageClient(ctx context.Context, opt *Options) (*objectstorage.O
if opt.Region != "" {
client.SetRegion(opt.Region)
}
if opt.Endpoint != "" {
client.Host = opt.Endpoint
}
modifyClient(ctx, opt, &client.BaseClient)
return &client, err
}