summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2017-04-26 19:08:11 +0000
committerGerrit Code Review <review@openstack.org>2017-04-26 19:08:11 +0000
commita28364a37a3eb76b41e4ef5d53f21e58d2094f0d (patch)
tree4d762a288af8707f29c7532b837eedeade14d3af /doc
parent95736cebc3b32464c77fe1173d623f0be25d1d25 (diff)
parent1c49a1f01da73b8eed701809de88b408e738dfed (diff)
downloadpython-openstackclient-a28364a37a3eb76b41e4ef5d53f21e58d2094f0d.tar.gz
Merge "Fix NoneType error for volume snapshot create command"
Diffstat (limited to 'doc')
-rw-r--r--doc/source/backwards-incompatible.rst15
-rw-r--r--doc/source/command-objects/volume-snapshot.rst2
2 files changed, 16 insertions, 1 deletions
diff --git a/doc/source/backwards-incompatible.rst b/doc/source/backwards-incompatible.rst
index 22c300de..0202e8a5 100644
--- a/doc/source/backwards-incompatible.rst
+++ b/doc/source/backwards-incompatible.rst
@@ -27,6 +27,21 @@ Backwards Incompatible Changes
.. * Remove in: <5.0>
.. * Commit: <tbd>
+Release 3.10
+------------
+
+1. The positional argument ``<snapshot-name>`` of the ``volume snapshot create``
+ command is no longer optional.
+
+ Previously when the ``--volume`` option was
+ present ``<snapshot-name>`` defaulted to the ``--volume`` value. When the
+ ``--volume`` option is not present now it defaults to the value of
+ ``<snapshot-name>``.
+
+ * As of: 3.10
+ * Bug: 1659894
+ * Commit: https://review.openstack.org/440497
+
Release 3.0
-----------
diff --git a/doc/source/command-objects/volume-snapshot.rst b/doc/source/command-objects/volume-snapshot.rst
index 67db62f2..30cc77cc 100644
--- a/doc/source/command-objects/volume-snapshot.rst
+++ b/doc/source/command-objects/volume-snapshot.rst
@@ -49,7 +49,7 @@ Create new volume snapshot
.. _volume_snapshot_create-snapshot-name:
.. describe:: <snapshot-name>
- Name of the new snapshot (default to None)
+ Name of the new snapshot
volume snapshot delete
----------------------