This is an automated email from the ASF dual-hosted git repository.
phunt pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/zookeeper.git
The following commit(s) were added to refs/heads/master by this push:
new d0b60bd Fix typo in error log message, added missing space
d0b60bd is described below
commit d0b60bd3cb4fe724fe5ed1670bb7d3e30842373a
Author: nicolasguyomar <[email protected]>
AuthorDate: Wed Feb 27 08:25:58 2019 -0800
Fix typo in error log message, added missing space
Fix typo in error log message, added missing space
Author: nicolasguyomar <[email protected]>
Reviewers: [email protected]
Closes #837 from nicolasguyomar/patch-1
Change-Id: I6ddf782aa1397908a436b57d709e4120104bb858
---
.../src/main/java/org/apache/zookeeper/server/ServerCnxnFactory.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/zookeeper-server/src/main/java/org/apache/zookeeper/server/ServerCnxnFactory.java
b/zookeeper-server/src/main/java/org/apache/zookeeper/server/ServerCnxnFactory.java
index faf101f..214aae1 100644
---
a/zookeeper-server/src/main/java/org/apache/zookeeper/server/ServerCnxnFactory.java
+++
b/zookeeper-server/src/main/java/org/apache/zookeeper/server/ServerCnxnFactory.java
@@ -268,7 +268,7 @@ public abstract class ServerCnxnFactory {
if (securityException != null && (loginContextName != null ||
jaasFile != null)) {
String errorMessage = "No JAAS configuration section named '"
+ serverSection + "' was found";
if (jaasFile != null) {
- errorMessage += "in '" + jaasFile + "'.";
+ errorMessage += " in '" + jaasFile + "'.";
}
if (loginContextName != null) {
errorMessage += " But " +
ZooKeeperSaslServer.LOGIN_CONTEXT_NAME_KEY + " was set.";