Alon Bar-Lev has uploaded a new change for review. Change subject: core: miniyum: fix http range error when yum cache exists ......................................................................
core: miniyum: fix http range error when yum cache exists Change-Id: I8492376ce52908223f2c8e491c4b560059afb2cf Signed-off-by: Alon Bar-Lev <[email protected]> --- M ChangeLog M src/otopi/miniyum.py 2 files changed, 2 insertions(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/otopi refs/changes/18/25118/1 diff --git a/ChangeLog b/ChangeLog index d0b85b0..ea0a171 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,7 @@ ????-??-?? - Version 1.2.0_??? + * yum: fix HTTP range error when yum cache exists. 2014-02-27 - Version 1.2.0_beta2 diff --git a/src/otopi/miniyum.py b/src/otopi/miniyum.py index fd14d5f..0a241c1 100755 --- a/src/otopi/miniyum.py +++ b/src/otopi/miniyum.py @@ -336,7 +336,7 @@ package=MiniYum._get_package_name(po), ) ) - yum.YumBase.verifyPkg(self, fo, po, raiseError) + return yum.YumBase.verifyPkg(self, fo, po, raiseError) class _MiniYumTransaction(object): def __init__(self, managed, rollback=True): -- To view, visit http://gerrit.ovirt.org/25118 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I8492376ce52908223f2c8e491c4b560059afb2cf Gerrit-PatchSet: 1 Gerrit-Project: otopi Gerrit-Branch: master Gerrit-Owner: Alon Bar-Lev <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
