Skip to content

Commit 857a9ab

Browse files
committed
Absorb patch from duckdb/duckdb#17527
1 parent eb1b049 commit 857a9ab

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/MainDistributionPipeline.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: duckdb/extension-ci-tools/.github/workflows/_extension_distribution.yml@main
1818
with:
1919
extension_name: httpfs
20-
duckdb_version: main
20+
duckdb_version: v1.3-ossivalis
2121
ci_tools_version: main
2222

2323
duckdb-stable-deploy:
@@ -27,6 +27,6 @@ jobs:
2727
secrets: inherit
2828
with:
2929
extension_name: httpfs
30-
duckdb_version: main
30+
duckdb_version: v1.3-ossivalis
3131
ci_tools_version: main
32-
deploy_latest: ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main' }}
32+
deploy_latest: ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main' }}

duckdb

Submodule duckdb updated 54 files

extension/httpfs/httpfs_client.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class HTTPFSClient : public HTTPClient {
1010
public:
1111
HTTPFSClient(HTTPFSParams &http_params, const string &proto_host_port) {
1212
client = make_uniq<duckdb_httplib_openssl::Client>(proto_host_port);
13-
client->set_follow_location(true);
13+
client->set_follow_location(http_params.follow_location);
1414
client->set_keep_alive(http_params.keep_alive);
1515
if (!http_params.ca_cert_file.empty()) {
1616
client->set_ca_cert_path(http_params.ca_cert_file.c_str());

0 commit comments

Comments
 (0)