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

ayushtkn pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/hadoop.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 767c9da6f34 HDFS-17943. Fix malformed error message for negative 
dfs.domain.socket.disable.interval.seconds (#8603). Contributed by SeungTaek Lim
767c9da6f34 is described below

commit 767c9da6f34f9ed57311ba9f43497563c05b9f46
Author: SeungTaek Lim <[email protected]>
AuthorDate: Tue Jul 21 16:43:29 2026 +0900

    HDFS-17943. Fix malformed error message for negative 
dfs.domain.socket.disable.interval.seconds (#8603). Contributed by SeungTaek Lim
---
 .../src/main/java/org/apache/hadoop/hdfs/client/impl/DfsClientConf.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/client/impl/DfsClientConf.java
 
b/hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/client/impl/DfsClientConf.java
index dfc89adeab3..00b4c1827ea 100644
--- 
a/hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/client/impl/DfsClientConf.java
+++ 
b/hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/client/impl/DfsClientConf.java
@@ -866,7 +866,7 @@ public ShortCircuitConf(Configuration conf) {
           DFS_DOMAIN_SOCKET_DISABLE_INTERVAL_SECOND_KEY,
           DFS_DOMAIN_SOCKET_DISABLE_INTERVAL_SECOND_DEFAULT);
       Preconditions.checkArgument(domainSocketDisableIntervalSeconds >= 0,
-          DFS_DOMAIN_SOCKET_DISABLE_INTERVAL_SECOND_KEY + "can't be 
negative.");
+          DFS_DOMAIN_SOCKET_DISABLE_INTERVAL_SECOND_KEY + " can't be 
negative.");
 
       keyProviderCacheExpiryMs = conf.getLong(
           DFS_CLIENT_KEY_PROVIDER_CACHE_EXPIRY_MS,


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to