Skip to content

Commit

Permalink
FIx failing test
Browse files Browse the repository at this point in the history
Signed-off-by: Ben Sherman <bentshermann@gmail.com>
  • Loading branch information
bentsherman committed Jan 31, 2024
1 parent 6a432e3 commit e5fd6d1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -846,7 +846,7 @@ protected S3FileSystem createFileSystem(URI uri, AwsConfig awsConfig) {
client.setUploadChunkSize(props.getProperty("upload_chunk_size"));
client.setUploadMaxThreads(props.getProperty("upload_max_threads"));

if( props.getProperty("glacier_auto_retrieval") )
if( props.getProperty("glacier_auto_retrieval") != null )
log.warn("Glacier auto-retrieval is no longer supported, config option `aws.client.glacierAutoRetrieval` will be ignored");

return new S3FileSystem(this, client, uri, props);
Expand Down

0 comments on commit e5fd6d1

Please sign in to comment.