diff options
| author | Zuul <zuul@review.openstack.org> | 2018-10-03 17:54:19 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2018-10-03 17:54:19 +0000 |
| commit | 4e17e1d1912f1902a37e4db543e38cdbe3961358 (patch) | |
| tree | c3f4c33af4f194810620b9c90d8dcdeb3bd82454 /cinderclient/v3/group_snapshots.py | |
| parent | c73844df2dc1c02637235babb22cd263eaa45a5b (diff) | |
| parent | 223d754f6162d87a305bcb2b041a5e73d5fae303 (diff) | |
| download | python-cinderclient-4.1.0.tar.gz | |
Merge "Fix encoding of query parameters"4.1.0
Diffstat (limited to 'cinderclient/v3/group_snapshots.py')
| -rw-r--r-- | cinderclient/v3/group_snapshots.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cinderclient/v3/group_snapshots.py b/cinderclient/v3/group_snapshots.py index ed7fe79..9225995 100644 --- a/cinderclient/v3/group_snapshots.py +++ b/cinderclient/v3/group_snapshots.py @@ -96,7 +96,7 @@ class GroupSnapshotManager(base.ManagerWithFind): :param search_opts: search options :rtype: list of :class:`GroupSnapshot` """ - query_string = utils.build_query_param(search_opts) + query_string = utils.build_query_param(search_opts, sort=True) detail = "" if detailed: |
