Skip to content

Commit d6a472b

Browse files
authored
Merge pull request #71 from carlopi/fixup_syntax_error
Fixup syntax error + temporary skip wasm targets
2 parents 00b7758 + 37cbb89 commit d6a472b

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/MainDistributionPipeline.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ jobs:
1919
extension_name: httpfs
2020
duckdb_version: v1.3.1
2121
ci_tools_version: main
22+
exclude_archs: 'wasm_mvp;wasm_eh;wasm_threads'
23+
2224

2325
duckdb-stable-deploy:
2426
name: Deploy extension binaries
@@ -30,3 +32,4 @@ jobs:
3032
duckdb_version: v1.3.1
3133
ci_tools_version: main
3234
deploy_latest: ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main' }}
35+
exclude_archs: 'wasm_mvp;wasm_eh;wasm_threads'

extension/httpfs/httpfs.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,7 @@ void HTTPFileHandle::FullDownload(HTTPFileSystem &hfs, bool &should_write_cache)
536536
// Try to fully download the file first
537537
const auto full_download_result = hfs.GetRequest(*this, path, {});
538538
if (full_download_result->status != HTTPStatusCode::OK_200) {
539-
throw HTTPException(*full_download_result, "Full download failed to to URL \"%s\": %s (%s)",
539+
throw HTTPException(*full_download_result, "Full download failed to to URL \"%s\": %d (%s)",
540540
full_download_result->url, static_cast<int>(full_download_result->status),
541541
full_download_result->GetError());
542542
}

0 commit comments

Comments
 (0)