Skip to content

Commit

Permalink
Recommend to use filesystem-nio2 storage backend
Browse files Browse the repository at this point in the history
  • Loading branch information
gaul committed Feb 1, 2025
1 parent e7d12ca commit 83b159e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main/java/org/gaul/s3proxy/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,9 @@ public static void main(String[] args) throws Exception {
properties.putAll(System.getProperties());

BlobStore blobStore = createBlobStore(properties, executorService);
if (blobStore.getContext().unwrap().getProviderMetadata().getId().equals("filesystem")) {
logger.warn("filesystem storage backend deprecated -- please use filesystem-nio2 instead");
}

blobStore = parseMiddlewareProperties(blobStore, executorService,
properties);
Expand Down

0 comments on commit 83b159e

Please sign in to comment.