diff options
| author | Sean McGinnis <sean.mcginnis@gmail.com> | 2019-04-18 12:22:19 -0500 |
|---|---|---|
| committer | Brian Rosmaita <rosmaita.fossdev@gmail.com> | 2019-09-11 08:06:43 -0400 |
| commit | 3c1b417959689c85a2f54505057ca995fedca075 (patch) | |
| tree | 584e08c66032024271b9fbd9dd843b6f43471deb /cinderclient/tests/functional/test_cli.py | |
| parent | 61fec71adbcff8b62312d2e814c8af4879d169be (diff) | |
| download | python-cinderclient-3c1b417959689c85a2f54505057ca995fedca075.tar.gz | |
Drop support for --allow-multiattach
The ability to enable multiattach on the command line was deprecated in
Queens with the full implementation of multiattach enabling it through
volume type extra specs. This removes the command line arg and handling
for specifying it with volume creation.
Change-Id: Ifc0c874657f959266050cd1a7a40e6ecccc8c114
Signed-off-by: Sean McGinnis <sean.mcginnis@gmail.com>
Diffstat (limited to 'cinderclient/tests/functional/test_cli.py')
| -rw-r--r-- | cinderclient/tests/functional/test_cli.py | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/cinderclient/tests/functional/test_cli.py b/cinderclient/tests/functional/test_cli.py index bfa653f..0490df9 100644 --- a/cinderclient/tests/functional/test_cli.py +++ b/cinderclient/tests/functional/test_cli.py @@ -17,12 +17,13 @@ from cinderclient.tests.functional import base class CinderVolumeTests(base.ClientTestBase): """Check of base cinder volume commands.""" - CREATE_VOLUME_PROPERTY = ('attachments', 'multiattach', - 'os-vol-tenant-attr:tenant_id', - 'availability_zone', 'bootable', - 'created_at', 'description', 'encrypted', 'id', - 'metadata', 'name', 'size', 'status', - 'user_id', 'volume_type') + CREATE_VOLUME_PROPERTY = ( + 'attachments', + 'os-vol-tenant-attr:tenant_id', + 'availability_zone', 'bootable', + 'created_at', 'description', 'encrypted', 'id', + 'metadata', 'name', 'size', 'status', + 'user_id', 'volume_type') SHOW_VOLUME_PROPERTY = ('attachment_ids', 'attached_servers', 'availability_zone', 'bootable', |
