Timeout Configuration

Most source control blocks allow you to specify a timeout for operations (see the documentation for the specific source control block to be certain). By default you specify the timeout in milliseconds.

If you specify the timout as an element, it can be set in units of milliseconds, seconds, minutes or hours.

If you specify the timeout as an attribute on the sourcecontrol block then it must be specified in milliseconds.

Example: Set timeout to 60 seconds (60,000 milliseconds)

1<timeout>60000</timeout>

Example: Set the timeout in various units

1<timeout units="millis">60000</timeout>
2<timeout units="seconds">60</timeout>
3<timeout units="minutes">5</timeout>
4<timeout units="hours">1</timeout>