Skip to content

Commit

Permalink
remove hardcoded virtual hosted (MystenLabs#14719)
Browse files Browse the repository at this point in the history
## Description 

Follow up to MystenLabs#14707, missed a spot
## Test Plan 

I'll test on a testnet fullnode
  • Loading branch information
johnjmartin authored Nov 8, 2023
1 parent d078caf commit a8d4d04
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions crates/sui-storage/src/object_store/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -138,9 +138,7 @@ impl ObjectStoreConfig {
builder = builder.with_secret_access_key(secret);
}
if let Some(endpoint) = &self.aws_endpoint {
builder = builder
.with_endpoint(endpoint)
.with_virtual_hosted_style_request(true);
builder = builder.with_endpoint(endpoint);
}
// if let Some(profile) = &self.aws_profile {
// builder = builder.with_profile(profile);
Expand Down

0 comments on commit a8d4d04

Please sign in to comment.