|
@@ -27,6 +27,7 @@ import java.util.Iterator;
|
|
import java.util.LinkedList;
|
|
import java.util.LinkedList;
|
|
import java.util.List;
|
|
import java.util.List;
|
|
import java.util.ListIterator;
|
|
import java.util.ListIterator;
|
|
|
|
+import java.util.Locale;
|
|
import java.util.Set;
|
|
import java.util.Set;
|
|
import java.util.concurrent.LinkedBlockingQueue;
|
|
import java.util.concurrent.LinkedBlockingQueue;
|
|
|
|
|
|
@@ -317,7 +318,7 @@ public class PrepRequestProcessor extends Thread implements RequestProcessor {
|
|
CreateMode createMode =
|
|
CreateMode createMode =
|
|
CreateMode.fromFlag(createRequest.getFlags());
|
|
CreateMode.fromFlag(createRequest.getFlags());
|
|
if (createMode.isSequential()) {
|
|
if (createMode.isSequential()) {
|
|
- path = path + String.format("%010d", parentCVersion);
|
|
|
|
|
|
+ path = path + String.format(Locale.ENGLISH, "%010d", parentCVersion);
|
|
}
|
|
}
|
|
try {
|
|
try {
|
|
PathUtils.validatePath(path);
|
|
PathUtils.validatePath(path);
|