Skip to content

Commit

Permalink
Add back
Browse files Browse the repository at this point in the history
  • Loading branch information
ka-weihe committed Jul 18, 2024
1 parent 67ed521 commit 5cc39ac
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/connector/src/sink/iceberg/storage_catalog.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ pub struct StorageCatalogConfig {
secret_key: String,
endpoint: Option<String>,
region: Option<String>,
path_style_access: bool,
}

/// File system catalog.
Expand All @@ -61,6 +62,8 @@ impl StorageCatalog {
} else {
file_io_builder
};
file_io_builder =
file_io_builder.with_prop("path_style_access", &config.path_style_access.to_string());

Ok(StorageCatalog {
warehouse: config.warehouse.clone(),
Expand Down

0 comments on commit 5cc39ac

Please sign in to comment.