diff --git a/internal/store/store.go b/internal/store/store.go index 5950b835f..73d04e005 100644 --- a/internal/store/store.go +++ b/internal/store/store.go @@ -305,6 +305,11 @@ func (s *Store) ListQueue(uuids []uuid.UUID) []*ComposeEntry { } } + // make this function output more predictable + sort.Slice(composes, func(i, j int) bool { + return composes[i].ID.String() < composes[j].ID.String() + }) + return composes }