Skip to content

Commit

Permalink
Merge pull request #288 from databendlabs/fix/presigned-url-log
Browse files Browse the repository at this point in the history
fix: remove presigned url in log
  • Loading branch information
hantmac authored Nov 25, 2024
2 parents cc10886 + 46b1548 commit 3ee08ef
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/actions/setup_databend_cluster/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ inputs:
version:
description: "query and meta service version"
required: true
default: "1.2.655-nightly"
default: "1.2.661-nightly"
target:
description: ""
required: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_cluster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- uses: ./.github/actions/setup_databend_cluster
timeout-minutes: 15
with:
version: '1.2.655-nightly'
version: '1.2.661-nightly'
target: 'x86_64-unknown-linux-gnu'

- name: Test with conn to node 1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ private void uploadFromStream(InputStream inputStream, Headers headers, String p
try {
executeInternal(r, true);
} catch (IOException e) {
throw new IOException(format(" uploadFromStream failed, file size is %s, presignUrl is %s kb, error is %s", fileSize / 1024.0, presignedUrl, e.toString()));
throw new IOException(format(" uploadFromStream failed, file size is %s kb, error is %s", fileSize / 1024.0, presignedUrl, e.toString()));
}
}

Expand Down

0 comments on commit 3ee08ef

Please sign in to comment.