Fix build-image script output

oslo.log changed the default for stderr, and it broke output parsing
that we do.

Change-Id: I14a7705e7c10d5f1fe44544e2764fbb0fa05e7d9
Closes-Bug: #1647763
(cherry picked from commit 41c42cb4a9)
This commit is contained in:
Thomas Herve 2016-12-06 16:22:01 +01:00 committed by James Slagle
parent 07a15ae423
commit b83a0935bc
1 changed files with 1 additions and 0 deletions

View File

@ -63,6 +63,7 @@ _opts = [
]
CONF.register_group(image_opt_group)
CONF.register_cli_opts(_opts, group=image_opt_group)
CONF.set_default('use_stderr', True)
log.setup(CONF, 'build-overcloud-images')
def main(argv=sys.argv):