Skip to content

Commit

Permalink
Added gcs to gcp cloud schema in polars-core::cloud
Browse files Browse the repository at this point in the history
  • Loading branch information
varunmittal91 committed Jul 31, 2023
1 parent f00b47d commit f8fdf14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/polars-core/src/cloud.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ impl FromStr for CloudType {
Ok(match parsed.scheme() {
"s3" => Self::Aws,
"az" | "adl" | "abfs" => Self::Azure,
"gs" | "gcp" => Self::Gcp,
"gs" | "gcp" | "gcs" => Self::Gcp,
"file" => Self::File,
_ => polars_bail!(ComputeError: "unknown url scheme"),
})
Expand Down

0 comments on commit f8fdf14

Please sign in to comment.