Skip to content

Commit

Permalink
Update src/loci/formats/S3FileSystemStore.java
Browse files Browse the repository at this point in the history
Co-authored-by: Sébastien Besson <[email protected]>
  • Loading branch information
dgault and sbesson authored May 1, 2024
1 parent 44d5622 commit 6944b02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/loci/formats/S3FileSystemStore.java
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public String getRoot() {

private void setupClient() {
String[] pathSplit = root.toString().split(File.separator);
String endpoint = "ENDPPOINT_PROTOCOL" + pathSplit[1] + File.separator;
String endpoint = ENDPPOINT_PROTOCOL + pathSplit[1] + File.separator;
try {
client = AmazonS3ClientBuilder.standard()
.withEndpointConfiguration(new AwsClientBuilder.EndpointConfiguration(endpoint, "auto"))
Expand Down

0 comments on commit 6944b02

Please sign in to comment.