Fix config type of copy_logs from string to Boolean

* As per the default value of copy_logs is Boolean
  but config type is defined as string, It needs to
  be fixed other wise tempest init will throw warning.

Change-Id: I9abf0c989e707b879c160d4df14546dd87c16f95
Closes-Bug: #1685797
This commit is contained in:
Chandan Kumar 2017-04-24 19:32:13 +05:30 committed by yatin
parent 530d225fcd
commit 32b468f7e1
1 changed files with 3 additions and 3 deletions

View File

@ -61,7 +61,7 @@ MagnumGroup = [
default="8.8.8.8",
help="DNS nameserver to use for ClusterTemplate."),
cfg.StrOpt("copy_logs",
default=True,
help="Specify whether to copy nova server logs on failure."),
cfg.BoolOpt("copy_logs",
default=True,
help="Specify whether to copy nova server logs on failure."),
]