From 1a3dbfaabb13b62b15b28febb08ed7d7218b8f4c Mon Sep 17 00:00:00 2001 From: Nate Potter Date: Fri, 6 Nov 2015 21:48:19 +0000 Subject: [PATCH] Update help message for cinder migrate As per the doc bug https://bugs.launchpad.net/openstack-manuals/+bug/1363830 documentation for the cinder CLI should be updated to reflect that the host needs to be given in the form host@backend#pool, and the docs for the cli-reference are auto-generated from the client. Change-Id: I66d41e05436782c3acd24f9633c4b67ca5c56b15 --- cinderclient/v2/shell.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cinderclient/v2/shell.py b/cinderclient/v2/shell.py index 9b2ac880e..893d4aa6e 100644 --- a/cinderclient/v2/shell.py +++ b/cinderclient/v2/shell.py @@ -1189,7 +1189,8 @@ def do_upload_to_image(cs, args): @utils.arg('volume', metavar='', help='ID of volume to migrate.') -@utils.arg('host', metavar='', help='Destination host.') +@utils.arg('host', metavar='', help='Destination host. Takes the form: ' + 'host@backend-name#pool') @utils.arg('--force-host-copy', metavar='', choices=['True', 'False'], required=False,