tomaswolf commented on code in PR #726:
URL: https://github.com/apache/mina-sshd/pull/726#discussion_r2051739145


##########
sshd-core/src/main/java/org/apache/sshd/client/session/ClientSession.java:
##########
@@ -95,6 +96,11 @@ enum ClientSessionEvent {
         AUTHED
     }
 
+    /**
+     * Minimum timeout value. When used in {@link #executeRemoteCommand}, the 
command execution will wait indefinitely.
+     */
+    Duration MIN_TIMEOUT = Duration.ofMillis(0L);

Review Comment:
   Seems to me that we don't need this constant. Just use `Duration.ZERO`.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@mina.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@mina.apache.org
For additional commands, e-mail: dev-h...@mina.apache.org

Reply via email to