diff options
| author | Zuul <zuul@review.opendev.org> | 2019-09-11 20:29:58 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2019-09-11 20:29:58 +0000 |
| commit | a63d4d651ae2f7614224f716b3ef8ebf392a6b78 (patch) | |
| tree | 0c939c22069ccde2d24d50c91eb75989d4d2d442 /cinderclient/v3/attachments.py | |
| parent | d83998f6f0c18787a99ae189a4429fc142d8533a (diff) | |
| parent | 246040a7325164eb0c7c3171dd21ceb7c7d149ce (diff) | |
| download | python-cinderclient-5.0.0.tar.gz | |
Merge "Drop support for --sort_key and --sort_dir"5.0.0
Diffstat (limited to 'cinderclient/v3/attachments.py')
| -rw-r--r-- | cinderclient/v3/attachments.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cinderclient/v3/attachments.py b/cinderclient/v3/attachments.py index a0732a3..e1e9290 100644 --- a/cinderclient/v3/attachments.py +++ b/cinderclient/v3/attachments.py @@ -45,7 +45,7 @@ class VolumeAttachmentManager(base.ManagerWithFind): @api_versions.wraps('3.27') def list(self, detailed=False, search_opts=None, marker=None, limit=None, - sort_key=None, sort_dir=None, sort=None): + sort=None): """List all attachments.""" resource_type = "attachments" url = self._build_list_url(resource_type, @@ -53,8 +53,7 @@ class VolumeAttachmentManager(base.ManagerWithFind): search_opts=search_opts, marker=marker, limit=limit, - sort_key=sort_key, - sort_dir=sort_dir, sort=sort) + sort=sort) return self._list(url, resource_type, limit=limit) @api_versions.wraps('3.27') |
