Joel McCance created EXEC-68:
--------------------------------
Summary: Watchdog kills process immediately if timeout is too large
Key: EXEC-68
URL: https://issues.apache.org/jira/browse/EXEC-68
Project: Commons Exec
Issue Type: Bug
Affects Versions: 1.1, 1.1.1
Environment: Should exist for all platforms, but specifically
identified on Windows 7.
Reporter: Joel McCance
Priority: Minor
When using the ExecuteWatchdog with a very large timeout (e.g.,
Long.MAX_VALUE), the Watchdog immediately destroys the process instead of
waiting for the duration of the timeout. For example, the following code
snippet would continue immediately:
{code}
DefaultExecutor executor = new DefaultExecutor();
ExecuteWatchdog watchdog = new ExecuteWatchdog(Long.MAX_VALUE);
executor.setWatchdog(watchdog);
executor.execute(cmd); // Where `cmd` could be any valid command.
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira