Skip to content

Commit

Permalink
add in to the directory where the part files will be created
Browse files Browse the repository at this point in the history
  • Loading branch information
sydney-munro committed Jan 18, 2024
1 parent 0115605 commit c7d14b0
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ public static PartNamingStrategy prefix(String prefixPattern) {
* <p>General format is
*
* <pre><code>
* {objectName}/{randomKeyDigest};{objectInfoDigest};{partIndex}.part
* {objectName}-parts/{randomKeyDigest};{objectInfoDigest};{partIndex}.part
* </code></pre>
*
* <p>{@code {objectInfoDigest}} will be fixed for an individual {@link BlobWriteSession}.
Expand Down Expand Up @@ -594,6 +594,7 @@ protected String fmtFields(String randomKey, String ultimateObjectName, String p
String nameDigest = B64.encodeToString(hashCode.asBytes());
return prefix
+ ultimateObjectName
+ "-parts"
+ "/"
+ randomKey
+ FIELD_SEPARATOR
Expand Down

0 comments on commit c7d14b0

Please sign in to comment.