Skip to content

Commit da3c487

Browse files
dujietiezhu
authored andcommitted
[hotfix-6279][redis] resolve zset's score type convent error
1 parent ce53a59 commit da3c487

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

flinkx-connectors/flinkx-connector-redis/src/main/java/com/dtstack/flinkx/connector/redis/sink/RedisOutputFormatBuilder.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,10 @@ protected void checkFormat() {
7676
.append("\n");
7777
}
7878
}
79+
}
7980

80-
if (sb.length() > 0) {
81-
throw new IllegalArgumentException("\n" + sb.toString());
82-
}
81+
if (sb.length() > 0) {
82+
throw new IllegalArgumentException("\n" + sb);
8383
}
8484
}
8585
}

0 commit comments

Comments
 (0)