Skip to content

Commit

Permalink
allow http in datafusion-cli http object store
Browse files Browse the repository at this point in the history
  • Loading branch information
adriangb committed Dec 3, 2024
1 parent 6a4bf0f commit a3db536
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions datafusion-cli/src/object_storage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -437,6 +437,7 @@ pub(crate) async fn get_object_store(
}
"http" | "https" => Arc::new(
HttpBuilder::new()
.with_allow_http(true)
.with_url(url.origin().ascii_serialization())
.build()?,
),
Expand Down

0 comments on commit a3db536

Please sign in to comment.