Skip to content

Commit

Permalink
Merge pull request #10031 from AR-2910/develop
Browse files Browse the repository at this point in the history
Problem with long file stores ID in JVM options #8312
  • Loading branch information
kcondon authored Oct 26, 2023
2 parents a8ea920 + 77c606f commit 914739c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ public void open(DataAccessOption... options) throws IOException {
}
} // else we're OK (assumes bucket name in storageidentifier matches the driver's bucketname)
} else {
if(!storageIdentifier.substring((this.driverId + DataAccess.SEPARATOR).length()).contains(":")) {
if(!storageIdentifier.contains(":")) {
//No driver id or bucket
newStorageIdentifier= this.driverId + DataAccess.SEPARATOR + bucketName + ":" + storageIdentifier;
} else {
Expand Down Expand Up @@ -1385,4 +1385,4 @@ public List<String> cleanUp(Predicate<String> filter, boolean dryRun) throws IOE
}
return toDelete;
}
}
}

0 comments on commit 914739c

Please sign in to comment.