We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64f3bfa commit 3251e7cCopy full SHA for 3251e7c
extension/httpfs/httpfs_extension.cpp
@@ -61,7 +61,12 @@ static void LoadInternal(DatabaseInstance &instance) {
61
// HuggingFace options
62
config.AddExtensionOption("hf_max_per_page", "Debug option to limit number of items returned in list requests",
63
LogicalType::UBIGINT, Value::UBIGINT(0));
64
- config.http_util = make_shared_ptr<HTTPFSUtil>();
+
65
+ if (config.http_util && config.http_util->GetName() == "WasmHTTPUtils") {
66
+ // Already handled, do not override
67
+ } else {
68
+ config.http_util = make_shared_ptr<HTTPFSUtil>();
69
+ }
70
71
auto provider = make_uniq<AWSEnvironmentCredentialsProvider>(config);
72
provider->SetAll();
0 commit comments