Remove verbose

Since we are in Ocata we should remove the
verbose option that was deprecated

Change-Id: I05856b25247280249d47918e70cdc8eb8890beeb
This commit is contained in:
Iury Gregory Melo Ferreira
2016-09-27 20:19:01 -03:00
parent 33058da39b
commit 337bbc82de
3 changed files with 4 additions and 24 deletions

View File

@@ -193,12 +193,6 @@
# in the mistral config.
# Defaults to false.
#
# DEPRECATED PARAMETERS
#
# [*verbose*]
# (Optional) DEPRECATED. Should the daemons log verbose messages
# Defaults to undef.
#
class mistral(
$keystone_password,
$keystone_user = 'mistral',
@@ -237,8 +231,6 @@ class mistral(
$coordination_backend_url = $::os_service_default,
$coordination_heartbeat_interval = $::os_service_default,
$purge_config = false,
# Deprecated
$verbose = undef,
){
include ::mistral::params
@@ -257,10 +249,6 @@ class mistral(
purge => $purge_config,
}
if $verbose {
warning('verbose is deprecated, has no effect and will be removed after Newton cycle.')
}
mistral_config {
'keystone_authtoken/auth_uri': value => $auth_uri;
'keystone_authtoken/identity_uri': value => $identity_uri;

View File

@@ -86,12 +86,6 @@
# Defaults to $::os_service_default
# Example: 'Y-%m-%d %H:%M:%S'
#
# DEPRECATED PARAMETERS
#
# [*verbose*]
# (Optional) Deprecated. Should the daemons log verbose messages
# Defaults to undef
#
class mistral::logging(
$use_syslog = $::os_service_default,
$use_stderr = $::os_service_default,
@@ -109,8 +103,6 @@ class mistral::logging(
$instance_format = $::os_service_default,
$instance_uuid_format = $::os_service_default,
$log_date_format = $::os_service_default,
# Deprecated
$verbose = undef,
) {
# NOTE(spredzy): In order to keep backward compatibility we rely on the pick function
@@ -121,10 +113,6 @@ class mistral::logging(
$log_dir_real = pick($::mistral::log_dir,$log_dir)
$debug_real = pick($::mistral::debug,$debug)
if $verbose {
warning('verbose is deprecated, has no effect and will be removed after Newton cycle.')
}
oslo::log { 'mistral_config':
use_syslog => $use_syslog_real,
use_stderr => $use_stderr_real,

View File

@@ -0,0 +1,4 @@
---
other:
- The verbose option was marked to be removed in Ocata,
in Newton the option was deprecated.