Skip to content

Commit 493f58f

Browse files
committed
feat: align GCS scheme name with other libs
1 parent 07b6f6c commit 493f58f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • iceberg-rust/src/object_store

iceberg-rust/src/object_store/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ impl Display for Bucket<'_> {
3131
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
3232
match self {
3333
Bucket::S3(s) => write!(f, "s3://{}", s),
34-
Bucket::GCS(s) => write!(f, "gcs://{}", s),
34+
Bucket::GCS(s) => write!(f, "gs://{}", s),
3535
Bucket::Local => write!(f, ""),
3636
}
3737
}

0 commit comments

Comments
 (0)