Remove verbose
Since we are in Ocata we should remove the verbose option that was deprecated Change-Id: I05856b25247280249d47918e70cdc8eb8890beeb
This commit is contained in:
@@ -193,12 +193,6 @@
|
|||||||
# in the mistral config.
|
# in the mistral config.
|
||||||
# Defaults to false.
|
# Defaults to false.
|
||||||
#
|
#
|
||||||
# DEPRECATED PARAMETERS
|
|
||||||
#
|
|
||||||
# [*verbose*]
|
|
||||||
# (Optional) DEPRECATED. Should the daemons log verbose messages
|
|
||||||
# Defaults to undef.
|
|
||||||
#
|
|
||||||
class mistral(
|
class mistral(
|
||||||
$keystone_password,
|
$keystone_password,
|
||||||
$keystone_user = 'mistral',
|
$keystone_user = 'mistral',
|
||||||
@@ -237,8 +231,6 @@ class mistral(
|
|||||||
$coordination_backend_url = $::os_service_default,
|
$coordination_backend_url = $::os_service_default,
|
||||||
$coordination_heartbeat_interval = $::os_service_default,
|
$coordination_heartbeat_interval = $::os_service_default,
|
||||||
$purge_config = false,
|
$purge_config = false,
|
||||||
# Deprecated
|
|
||||||
$verbose = undef,
|
|
||||||
){
|
){
|
||||||
include ::mistral::params
|
include ::mistral::params
|
||||||
|
|
||||||
@@ -257,10 +249,6 @@ class mistral(
|
|||||||
purge => $purge_config,
|
purge => $purge_config,
|
||||||
}
|
}
|
||||||
|
|
||||||
if $verbose {
|
|
||||||
warning('verbose is deprecated, has no effect and will be removed after Newton cycle.')
|
|
||||||
}
|
|
||||||
|
|
||||||
mistral_config {
|
mistral_config {
|
||||||
'keystone_authtoken/auth_uri': value => $auth_uri;
|
'keystone_authtoken/auth_uri': value => $auth_uri;
|
||||||
'keystone_authtoken/identity_uri': value => $identity_uri;
|
'keystone_authtoken/identity_uri': value => $identity_uri;
|
||||||
|
@@ -86,12 +86,6 @@
|
|||||||
# Defaults to $::os_service_default
|
# Defaults to $::os_service_default
|
||||||
# Example: 'Y-%m-%d %H:%M:%S'
|
# Example: 'Y-%m-%d %H:%M:%S'
|
||||||
#
|
#
|
||||||
# DEPRECATED PARAMETERS
|
|
||||||
#
|
|
||||||
# [*verbose*]
|
|
||||||
# (Optional) Deprecated. Should the daemons log verbose messages
|
|
||||||
# Defaults to undef
|
|
||||||
#
|
|
||||||
class mistral::logging(
|
class mistral::logging(
|
||||||
$use_syslog = $::os_service_default,
|
$use_syslog = $::os_service_default,
|
||||||
$use_stderr = $::os_service_default,
|
$use_stderr = $::os_service_default,
|
||||||
@@ -109,8 +103,6 @@ class mistral::logging(
|
|||||||
$instance_format = $::os_service_default,
|
$instance_format = $::os_service_default,
|
||||||
$instance_uuid_format = $::os_service_default,
|
$instance_uuid_format = $::os_service_default,
|
||||||
$log_date_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
|
# 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)
|
$log_dir_real = pick($::mistral::log_dir,$log_dir)
|
||||||
$debug_real = pick($::mistral::debug,$debug)
|
$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':
|
oslo::log { 'mistral_config':
|
||||||
use_syslog => $use_syslog_real,
|
use_syslog => $use_syslog_real,
|
||||||
use_stderr => $use_stderr_real,
|
use_stderr => $use_stderr_real,
|
||||||
|
4
releasenotes/notes/remove_verbose-b6ae287286f00640.yaml
Normal file
4
releasenotes/notes/remove_verbose-b6ae287286f00640.yaml
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
---
|
||||||
|
other:
|
||||||
|
- The verbose option was marked to be removed in Ocata,
|
||||||
|
in Newton the option was deprecated.
|
Reference in New Issue
Block a user