From 8e4815648825914e9a94a55129f371bc0bd601e4 Mon Sep 17 00:00:00 2001 From: Ilya Etingof Date: Tue, 4 Jul 2017 19:13:05 +0200 Subject: [PATCH] Removed nonexistent option from quickstart snippet Neither `ironic-api` nor `ironic-conductor` tools accept the `-v` option. Although the developer's quickstart guide has it in the example what makes cut&paste failing. This quick fix removes the offending option from the doc. Change-Id: I31e3657f12f7a9cf64697b362cc168333752184c --- doc/source/contributor/dev-quickstart.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/contributor/dev-quickstart.rst b/doc/source/contributor/dev-quickstart.rst index 3b4469fefb..5cf81c6755 100644 --- a/doc/source/contributor/dev-quickstart.rst +++ b/doc/source/contributor/dev-quickstart.rst @@ -314,13 +314,13 @@ daemons; you can observe their output and stop them with Ctrl-C at any time. cd ~/ironic source .tox/venv/bin/activate - ironic-api -v -d --config-file etc/ironic/ironic.conf.local + ironic-api -d --config-file etc/ironic/ironic.conf.local #. Start the Conductor service in debug mode and watch its output:: cd ~/ironic source .tox/venv/bin/activate - ironic-conductor -v -d --config-file etc/ironic/ironic.conf.local + ironic-conductor -d --config-file etc/ironic/ironic.conf.local Step 4: Interact with the running services ------------------------------------------