This is an automated email from the ASF dual-hosted git repository.

dlmarion pushed a commit to branch 2.1
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/2.1 by this push:
     new f2adaebba2 Removed extra braces in string added as part of #4289
f2adaebba2 is described below

commit f2adaebba28b5e47ea03a850254e901a0c7be371
Author: Dave Marion <dlmar...@apache.org>
AuthorDate: Thu Feb 22 17:50:03 2024 +0000

    Removed extra braces in string added as part of #4289
---
 core/src/main/java/org/apache/accumulo/core/conf/ConfigCheckUtil.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/core/src/main/java/org/apache/accumulo/core/conf/ConfigCheckUtil.java 
b/core/src/main/java/org/apache/accumulo/core/conf/ConfigCheckUtil.java
index ba3e7e543f..eba5cc420f 100644
--- a/core/src/main/java/org/apache/accumulo/core/conf/ConfigCheckUtil.java
+++ b/core/src/main/java/org/apache/accumulo/core/conf/ConfigCheckUtil.java
@@ -57,7 +57,7 @@ public class ConfigCheckUtil {
       } else if (prop == null) {
         log.warn(PREFIX + "unrecognized property key ({}) for {}", key, 
source);
       } else if (prop.getType() == PropertyType.PREFIX) {
-        fatal(PREFIX + "incomplete property key (" + key + ") for {}" + 
source);
+        fatal(PREFIX + "incomplete property key (" + key + ") for " + source);
       } else if (!prop.getType().isValidFormat(value)) {
         fatal(PREFIX + "improperly formatted value for key (" + key + ", 
type=" + prop.getType()
             + ") : " + value + " for " + source);

Reply via email to