You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@karaf.apache.org by jb...@apache.org on 2020/04/22 05:09:32 UTC

[karaf] branch master updated: Specify the timeout unit (milliseconds)

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

jbonofre pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/karaf.git


The following commit(s) were added to refs/heads/master by this push:
     new 1a57f49  Specify the timeout unit (milliseconds)
     new 631841f  Merge pull request #1099 from andreasscherbaum/timeout
1a57f49 is described below

commit 1a57f499901b950b4aa044a01dc6e193274e8be5
Author: Andreas Scherbaum <an...@scherbaum.la>
AuthorDate: Tue Apr 21 18:33:41 2020 +0200

    Specify the timeout unit (milliseconds)
---
 client/src/main/java/org/apache/karaf/client/ClientConfig.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/client/src/main/java/org/apache/karaf/client/ClientConfig.java b/client/src/main/java/org/apache/karaf/client/ClientConfig.java
index 8f57481..6fefd90 100644
--- a/client/src/main/java/org/apache/karaf/client/ClientConfig.java
+++ b/client/src/main/java/org/apache/karaf/client/ClientConfig.java
@@ -213,7 +213,7 @@ public class ClientConfig {
         System.out.println("  -b            batch mode, specify multiple commands via standard input");
         System.out.println("  -f [file]     read commands from the specified file");
         System.out.println("  -k [keyFile]  specify the private keyFile location when using key login, need have BouncyCastle registered as security provider using this flag");
-        System.out.println("  -t [timeout]  define the client idle timeout");
+        System.out.println("  -t [timeout]  define the client idle timeout (in milliseconds)");
         System.out.println("  [commands] [--]   commands to run");
         System.out.println("If no commands are specified, the client will be put in an interactive mode");
         System.exit(0);