Skip to content

Commit

Permalink
Fix SNOW-683245 and format the file (#1188)
Browse files Browse the repository at this point in the history
* Fix SNOW-683245 and format the file

* Enable the test
  • Loading branch information
sfc-gh-igarish authored Nov 15, 2022
1 parent 7ad21d9 commit d369ef5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,8 @@ public void download(
}

logger.debug("Starting download without presigned URL", false);
blob.downloadTo(localFile.toPath());
blob.downloadTo(
localFile.toPath(), Blob.BlobSourceOption.shouldReturnRawInputStream(true));
logger.debug("Download successful", false);

// Get the user-defined BLOB metadata
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -857,7 +857,7 @@ private void testGeoMetadataSingle(
* @throws Throwable
*/
@Test
@Ignore
@ConditionalIgnoreRule.ConditionalIgnore(condition = RunningOnGithubAction.class)
public void testPutGetGcsDownscopedCredential() throws Throwable {
Connection connection = null;
Statement statement = null;
Expand Down

0 comments on commit d369ef5

Please sign in to comment.