Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBernd Hufmann2012-06-28 14:31:53 +0000
committerBernd Hufmann2012-06-28 14:31:53 +0000
commitc709409447ecbd2104f4db9ba79338d1fe3e9cd2 (patch)
treec0e343dd2df95c0ca3e613f329a8c933c9bbd86e
parent10b2ac23a9922c59f92b497d39c2d81653e0eff2 (diff)
downloadorg.eclipse.linuxtools-c709409447ecbd2104f4db9ba79338d1fe3e9cd2.tar.gz
org.eclipse.linuxtools-c709409447ecbd2104f4db9ba79338d1fe3e9cd2.tar.xz
org.eclipse.linuxtools-c709409447ecbd2104f4db9ba79338d1fe3e9cd2.zip
Put back timeout values for LTTng 2.0 control commands to 15 seconds
-rw-r--r--lttng/org.eclipse.linuxtools.lttng2.ui/src/org/eclipse/linuxtools/internal/lttng2/ui/views/control/remote/CommandShell.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/lttng/org.eclipse.linuxtools.lttng2.ui/src/org/eclipse/linuxtools/internal/lttng2/ui/views/control/remote/CommandShell.java b/lttng/org.eclipse.linuxtools.lttng2.ui/src/org/eclipse/linuxtools/internal/lttng2/ui/views/control/remote/CommandShell.java
index ba025ae7ad..88e58e1509 100644
--- a/lttng/org.eclipse.linuxtools.lttng2.ui/src/org/eclipse/linuxtools/internal/lttng2/ui/views/control/remote/CommandShell.java
+++ b/lttng/org.eclipse.linuxtools.lttng2.ui/src/org/eclipse/linuxtools/internal/lttng2/ui/views/control/remote/CommandShell.java
@@ -62,8 +62,8 @@ public class CommandShell implements ICommandShell {
/** Default command separator */
public final static char CMD_SEPARATOR = ';';
- // /** Default timeout value used for executing commands, in milliseconds */
- private final static int DEFAULT_TIMEOUT_VALUE = 150000; // in milliseconds
+ /** Default timeout value used for executing commands, in milliseconds */
+ private final static int DEFAULT_TIMEOUT_VALUE = 15000;
// ------------------------------------------------------------------------
// Attributes

Back to the top