Nir Soffer has uploaded a new change for review. Change subject: multipath: Keep tags sorted from newer to older ......................................................................
multipath: Keep tags sorted from newer to older When reading the code or adding a new tag, it is little nicer that the recent tags are on the top of the list. When searching for tags, it makes more sense to search the most recent tags first. Change-Id: I0dae0d3fa4599636b4f8c6a66d5bbad185d73ec1 Signed-off-by: Nir Soffer <[email protected]> --- M lib/vdsm/tool/configurators/multipath.py 1 file changed, 9 insertions(+), 9 deletions(-) git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/64/44864/1 diff --git a/lib/vdsm/tool/configurators/multipath.py b/lib/vdsm/tool/configurators/multipath.py index 42fd3d4..9107d10 100644 --- a/lib/vdsm/tool/configurators/multipath.py +++ b/lib/vdsm/tool/configurators/multipath.py @@ -41,16 +41,16 @@ _CURRENT_TAG = "# VDSM REVISION 1.2" _OLD_TAGS = [ - "# RHAT REVISION 0.2", - "# RHEV REVISION 0.3", - "# RHEV REVISION 0.4", - "# RHEV REVISION 0.5", - "# RHEV REVISION 0.6", - "# RHEV REVISION 0.7", - "# RHEV REVISION 0.8", - "# RHEV REVISION 0.9", - "# RHEV REVISION 1.0", "# RHEV REVISION 1.1", + "# RHEV REVISION 1.0", + "# RHEV REVISION 0.9", + "# RHEV REVISION 0.8", + "# RHEV REVISION 0.7", + "# RHEV REVISION 0.6", + "# RHEV REVISION 0.5", + "# RHEV REVISION 0.4", + "# RHEV REVISION 0.3", + "# RHAT REVISION 0.2", ] # The second line of multipath.conf may contain PRIVATE_TAG. This means -- To view, visit https://gerrit.ovirt.org/44864 To unsubscribe, visit https://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I0dae0d3fa4599636b4f8c6a66d5bbad185d73ec1 Gerrit-PatchSet: 1 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Nir Soffer <[email protected]> _______________________________________________ vdsm-patches mailing list [email protected] https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches
