client/rhel/yum-rhn-plugin/rhnplugin.py | 2 ++ client/rhel/yum-rhn-plugin/yum-rhn-plugin.spec | 5 ++++- rel-eng/packages/yum-rhn-plugin | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-)
New commits: commit bb05925bc6ada3d78102ce765e16418b82ac8aca Author: Miroslav Suchý msuchy@redhat.com Date: Wed Dec 21 17:13:51 2011 +0100
Automatic commit of package [yum-rhn-plugin] release [1.6.16-1].
diff --git a/client/rhel/yum-rhn-plugin/yum-rhn-plugin.spec b/client/rhel/yum-rhn-plugin/yum-rhn-plugin.spec index 15e6fc4..a19f5ea 100644 --- a/client/rhel/yum-rhn-plugin/yum-rhn-plugin.spec +++ b/client/rhel/yum-rhn-plugin/yum-rhn-plugin.spec @@ -1,6 +1,6 @@ Summary: RHN support for yum Name: yum-rhn-plugin -Version: 1.6.15 +Version: 1.6.16 Release: 1%{?dist} License: GPLv2 Group: System Environment/Base @@ -72,6 +72,9 @@ fi %doc LICENSE
%changelog +* Wed Dec 21 2011 Miroslav Suchý 1.6.16-1 +- 759786 - wrap SSL.SysCallError in yum error + * Wed Dec 21 2011 Milan Zazrivec mzazrivec@redhat.com 1.6.15-1 - updated translations
diff --git a/rel-eng/packages/yum-rhn-plugin b/rel-eng/packages/yum-rhn-plugin index 573208b..ee955a0 100644 --- a/rel-eng/packages/yum-rhn-plugin +++ b/rel-eng/packages/yum-rhn-plugin @@ -1 +1 @@ -1.6.15-1 client/rhel/yum-rhn-plugin/ +1.6.16-1 client/rhel/yum-rhn-plugin/
commit 3fe046b26abab2039ecb15416fd62ebb4840d2b3 Author: Miroslav Suchý msuchy@redhat.com Date: Wed Dec 21 16:53:53 2011 +0100
759786 - wrap SSL.SysCallError in yum error
diff --git a/client/rhel/yum-rhn-plugin/rhnplugin.py b/client/rhel/yum-rhn-plugin/rhnplugin.py index fe88500..f294b35 100644 --- a/client/rhel/yum-rhn-plugin/rhnplugin.py +++ b/client/rhel/yum-rhn-plugin/rhnplugin.py @@ -324,6 +324,8 @@ class RhnRepo(YumRepository): li = up2dateAuth.getLoginInfo() except up2dateErrors.RhnServerException, e: raise yum.Errors.RepoError(unicode(e)), None, sys.exc_info()[2] + except e: + raise yum.Errors.RepoError(unicode(e)), None, sys.exc_info()[2]
# TODO: do evalution on li auth times to see if we need to obtain a # new session...
spacewalk-commits@lists.fedorahosted.org