Increase timeout for RPM port tests 72/69072/1
authorDaniel Farrell <dfarrell@redhat.com>
Mon, 5 Mar 2018 12:54:54 +0000 (07:54 -0500)
committerDaniel Farrell <dfarrell@redhat.com>
Mon, 5 Mar 2018 12:56:27 +0000 (07:56 -0500)
Most verify-rpm jobs were failing due to ports not opening up in time.
The previous 120 seconds seems to be slightly too short, 125 seconds
seems to be about normal.

Fixes: INTPAK-145
Change-Id: I53f92bc84dda6318734010b8824b6d33c3c24798
Signed-off-by: Daniel Farrell <dfarrell@redhat.com>
jjb/packaging/test-ports-nofeature.sh

index 9cdc6e23f93793ca1afa8128759312e0318b5962..a6cc205e184b80e8a12430d6bcf6731582b32c9e 100644 (file)
@@ -38,7 +38,7 @@ while true; do
         echo "Closed ports:"
         printf '%s\n' "${closed_ports[@]}"
         break
-    elif [ $COUNT -gt 120 ]; then
+    elif [ $COUNT -gt 300 ]; then
         echo "Timeout waiting ports to open"
         echo "Open ports:"
         printf '%s\n' "${open_ports[@]}"