From a6b5896779b682501983743b2e5785f06d576ded Mon Sep 17 00:00:00 2001 From: coolgw Date: Tue, 19 Feb 2019 15:09:29 +0800 Subject: [PATCH] Increase timeout of zypper patch --- lib/utils.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils.pm b/lib/utils.pm index 2cafab652d38..1a3b921071d9 100644 --- a/lib/utils.pm +++ b/lib/utils.pm @@ -392,7 +392,7 @@ sub zypper_call { sub fully_patch_system { # first run, possible update of packager -- exit code 103 - zypper_call('patch --with-interactive -l', exitcode => [0, 102, 103], timeout => 1500); + zypper_call('patch --with-interactive -l', exitcode => [0, 102, 103], timeout => 3000); # second run, full system update zypper_call('patch --with-interactive -l', exitcode => [0, 102], timeout => 6000); }