From 664e82d3c39db38db217f7fc1ca277253f6964d9 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Wed, 21 Nov 2012 02:25:13 +0000 Subject: further bump threshold for detecting looping forever --- NEWS | 1 + URPM/Resolve.pm | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 2a08980..090bbed 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,4 @@ +- further bump threshold for detecting looping forever - workaround a segfault (mga#8158) Version 4.17 - 19 November 2012 diff --git a/URPM/Resolve.pm b/URPM/Resolve.pm index 6ac7ad6..c5aa514 100644 --- a/URPM/Resolve.pm +++ b/URPM/Resolve.pm @@ -1057,7 +1057,7 @@ sub resolve_requested__no_suggests_ { } # safety: - if ($count++ > 10000) { + if ($count++ > 50000) { die("detecting looping forever while trying to resolve dependancies.\n" . "Aborting... Try again with '-vv --debug' options"); } -- cgit v1.2.1