Skip to content

Commit 9eabc3a

Browse files
author
吴炳亨
authored
Merge pull request #291 from NigelWu95/dev
update save-path restriction.
2 parents a881d3c + 2c294c6 commit 9eabc3a

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version=8.3.13
1+
version=8.3.14
22

33
package_no_test:
44
mvn package -Dmaven.test.skip=true

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.qiniu</groupId>
88
<artifactId>qsuits</artifactId>
9-
<version>8.3.13</version>
9+
<version>8.3.14</version>
1010
<name>qsuits</name>
1111
<description>qiniu-suits is a efficient tools for qiniu api implemented by java8.</description>
1212
<url>https://github.com/NigelWu95/qiniu-suits-java</url>

src/main/java/com/qiniu/entry/CommonParams.java

+4-2
Original file line numberDiff line numberDiff line change
@@ -1275,9 +1275,11 @@ private void setSavePath() throws IOException {
12751275
throw new IOException(String.format("please change the save-path \"%s\", " +
12761276
"because there are remained files from last job, for not cover them.", savePath));
12771277
}
1278-
} else {
1279-
throw new IOException(String.format("please change save-path \"%s\" because it's not empty.", savePath));
12801278
}
1279+
// 取消目录非空校验,因为结果文件的前缀也可以区分
1280+
// else {
1281+
// throw new IOException(String.format("please change save-path \"%s\" because it's not empty.", savePath));
1282+
// }
12811283
}
12821284
}
12831285
}

version.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=8.3.13
1+
version=8.3.14

0 commit comments

Comments
 (0)