Skip to content

Commit 17cd4db

Browse files
committed
Version 0.6.1.
* Modify condition expression case.
1 parent 13f42a8 commit 17cd4db

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

cli/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.walksocket</groupId>
77
<artifactId>magentadesk</artifactId>
8-
<version>0.6.0</version>
8+
<version>0.6.1</version>
99
</parent>
1010
<artifactId>cli</artifactId>
1111
<packaging>jar</packaging>

cli/src/main/java/com/walksocket/md/MdInfoDiff.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ public String getStructureHash() throws SQLException {
333333
*/
334334
public CompletableFuture<String> getChecksumFuture(ExecutorService service) {
335335
if (supplier == null) {
336-
if (condition != null) {
336+
if (condition != null && !MdUtils.isNullOrEmpty(condition.expression)) {
337337
supplier = new MdSupplierInfoGetChecksumFake(con.getConnectionString(), database, tableName);
338338
} else {
339339
supplier = new MdSupplierInfoGetChecksum(con.getConnectionString(), database, tableName);

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.walksocket</groupId>
77
<artifactId>magentadesk</artifactId>
8-
<version>0.6.0</version>
8+
<version>0.6.1</version>
99
<modules>
1010
<module>cli</module>
1111
<module>web</module>

web/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.walksocket</groupId>
88
<artifactId>magentadesk</artifactId>
9-
<version>0.6.0</version>
9+
<version>0.6.1</version>
1010
</parent>
1111
<artifactId>web</artifactId>
1212
<packaging>jar</packaging>
@@ -17,7 +17,7 @@
1717
<dependency>
1818
<groupId>com.walksocket</groupId>
1919
<artifactId>cli</artifactId>
20-
<version>0.6.0</version>
20+
<version>0.6.1</version>
2121
</dependency>
2222
<!-- sqlite -->
2323
<dependency>

0 commit comments

Comments
 (0)