Merge "[nova] Do not throw out stdout of nova-manage --version"

This commit is contained in:
Zuul 2019-03-15 16:40:51 +00:00 committed by Gerrit Code Review
commit 9e21287dd3
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ limitations under the License.
set -ex
NOVA_VERSION=$(nova-manage --version 2>&1 > /dev/null)
NOVA_VERSION=$(nova-manage --version 2>&1)
# NOTE(portdirect): check if nova fully supports cells v2, and manage
# accordingly. Support was complete in ocata (V14.x.x).

View File

@ -18,7 +18,7 @@ limitations under the License.
set -ex
NOVA_VERSION=$(nova-manage --version 2>&1 > /dev/null)
NOVA_VERSION=$(nova-manage --version 2>&1)
function manage_cells () {
# NOTE(portdirect): check if nova fully supports cells v2, and manage