From ebdee55585c665927d0bd371d1a8cc7c8aff5520 Mon Sep 17 00:00:00 2001 From: Jimmy Zelinskie Date: Wed, 9 Sep 2015 15:51:19 -0400 Subject: [PATCH] list_repository_tag_history fallback orderby name If tags are created at the same time (usually from a tight loop), it is possible that they will be order nondeterministically unless we fallback to another orderby. --- data/model/tag.py | 1 + 1 file changed, 1 insertion(+) diff --git a/data/model/tag.py b/data/model/tag.py index 199d99704..5875c95b1 100644 --- a/data/model/tag.py +++ b/data/model/tag.py @@ -134,6 +134,7 @@ def list_repository_tag_history(repo_obj, page=1, size=100, specific_tag=None): .where(RepositoryTag.repository == repo_obj) .where(RepositoryTag.hidden == False) .order_by(RepositoryTag.lifetime_start_ts.desc()) + .order_by(RepositoryTag.name) .paginate(page, size)) if specific_tag: