Increase time for log collection in OVB

Increase log collection timeout for OVB to 20 minutes, because
10 minutes is not enough.

Change-Id: I2ce519aebe8ade6b7902b57af3bd241e4e4a9dd6
This commit is contained in:
Sagi Shnaidman 2018-03-27 18:10:45 +03:00
parent d0f2253046
commit 327e09e0f1
1 changed files with 2 additions and 2 deletions

View File

@ -72,9 +72,9 @@ function run_with_timeout {
JOB_TIME=$1
shift
COMMAND=$@
# Leave 10 minutes for quickstart logs collection for ovb only
# Leave 20 minutes for quickstart logs collection for ovb only
if [[ "$TOCI_JOBTYPE" =~ "ovb" ]]; then
RESERVED_LOG_TIME=10
RESERVED_LOG_TIME=20
else
RESERVED_LOG_TIME=3
fi