diff --git a/common/src/main/java/org/apache/uniffle/common/util/RssUtils.java b/common/src/main/java/org/apache/uniffle/common/util/RssUtils.java index d0c386e9fb..601f809e30 100644 --- a/common/src/main/java/org/apache/uniffle/common/util/RssUtils.java +++ b/common/src/main/java/org/apache/uniffle/common/util/RssUtils.java @@ -310,10 +310,7 @@ public static List loadExtensions(Class extClass, List classes public static void checkQuorumSetting(int replica, int replicaWrite, int replicaRead) { if (replica < 1 || replicaWrite > replica || replicaRead > replica) { throw new RssException( - "Replica config is invalid, it cannot be less than 1" + - " or less than replica.write " + - " or less than replica.read. " + - " Please check it."); + "Replica config is invalid, it cannot be less than 1 or less than replica.write or less than replica.read. Please check it."); } if (replicaWrite + replicaRead <= replica) { throw new RssException(