Skip to content

Commit 850a069

Browse files
authored
Removed un-required trimming
1 parent f0e719e commit 850a069

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/datastax/astra/migrate/AbstractJobSession.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ protected AbstractJobSession(CqlSession sourceSession, CqlSession astraSession,
9797

9898
String customWriteTimeStr =
9999
Util.getSparkPropOr(sc, "spark.target.writeTime.fixedValue", "0");
100-
if (StringUtils.isNotBlank(customWriteTimeStr) && StringUtils.isNumeric(customWriteTimeStr.trim())) {
100+
if (StringUtils.isNotBlank(customWriteTimeStr) && StringUtils.isNumeric(customWriteTimeStr)) {
101101
customWriteTime = Long.parseLong(customWriteTimeStr);
102102
}
103103

0 commit comments

Comments
 (0)