This page last changed on Feb 26, 2006 by vmassol.

Definition

Timeout after which the container start/stop is deemed failed

This feature is only available for local containers

Explanation

Cargo has a timeout for container start and stop operations. If the time taken to start/stop a container exceeds the timeout period the operations is considered failed and the container is then set in the unknown state.

The default timeout value is 2 minutes (120000 milliseconds). This value can be modified as shown below.

Example using the Java API

LocalContainer container = ...;
container.setTimeout(180000L);
System.out.println("Timeout = " + container.getTimeout());

Example using the Maven 2 plugin

<container>
  [...]
  <timeout>180000</timeout>
  [...]
</container>
Document generated by Confluence on Mar 22, 2006 15:28