Skip to content

Commit 43d7776

Browse files
committed
Merge branch '1.1.x'
2 parents 28a2826 + c1c7aaf commit 43d7776

File tree

1 file changed

+1
-1
lines changed
  • store/plugins/store-tool-uploader/src/main/java/modelengine/jade/store/tool/upload/utils

1 file changed

+1
-1
lines changed

store/plugins/store-tool-uploader/src/main/java/modelengine/jade/store/tool/upload/utils/FormatFileUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ private static String buildSerializerErrorPath(MismatchedInputException ex) {
224224
public static File renameFile(File sourceFile) {
225225
String sourceFileName = sourceFile.getName();
226226
File targetFile = new File(sourceFile.getParent(),
227-
FileUtils.ignoreExtension(sourceFileName) + "_" + System.currentTimeMillis() + FileUtils.extension(
227+
FileUtils.ignoreExtension(sourceFileName) + "-" + System.currentTimeMillis() + FileUtils.extension(
228228
sourceFileName));
229229
sourceFile.renameTo(targetFile);
230230
return targetFile;

0 commit comments

Comments
 (0)