Remove verbose
Since we are in Ocata we should remove the verbose option that was deprecated Change-Id: Ia5fa163622c6bc0c80a92069972add342d9cd5e3
This commit is contained in:
@@ -421,10 +421,6 @@
|
||||
#
|
||||
# DEPRECATED PARAMETERS
|
||||
#
|
||||
# [*verbose*]
|
||||
# (optional) Set log output to verbose output.
|
||||
# Defaults to undef
|
||||
#
|
||||
# [*memcached_servers*]
|
||||
# (optional) DEPRECATED. Use memcached_servers from
|
||||
# nova::keystone::authtoken class instead.
|
||||
@@ -527,7 +523,6 @@ class nova(
|
||||
$disk_allocation_ratio = $::os_service_default,
|
||||
$purge_config = false,
|
||||
# DEPRECATED PARAMETERS
|
||||
$verbose = undef,
|
||||
$memcached_servers = undef,
|
||||
) inherits nova::params {
|
||||
|
||||
@@ -542,10 +537,6 @@ class nova(
|
||||
warning('enabled_ssl_apis is empty but use_ssl is set to true')
|
||||
}
|
||||
|
||||
if $verbose {
|
||||
warning('verbose is deprecated, has no effect and will be removed after Newton cycle.')
|
||||
}
|
||||
|
||||
if $memcached_servers {
|
||||
warning('nova::memcached_servers is deprecated, use nova::keystone::authtoken::memcached_servers instead.')
|
||||
}
|
||||
|
@@ -85,13 +85,6 @@
|
||||
# Defaults to $::os_service_default
|
||||
# Example: 'Y-%m-%d %H:%M:%S'
|
||||
#
|
||||
# DEPRECATED PARAMETERS
|
||||
#
|
||||
# [*verbose*]
|
||||
# (optional) Should the daemons log verbose messages
|
||||
# DEPRECATED: Parameter has no effect
|
||||
# Defaults to undef
|
||||
#
|
||||
class nova::logging(
|
||||
$use_syslog = $::os_service_default,
|
||||
$use_stderr = $::os_service_default,
|
||||
@@ -109,8 +102,6 @@ class nova::logging(
|
||||
$instance_format = $::os_service_default,
|
||||
$instance_uuid_format = $::os_service_default,
|
||||
$log_date_format = $::os_service_default,
|
||||
# DEPRECATED PARAMETERS
|
||||
$verbose = undef,
|
||||
) {
|
||||
|
||||
include ::nova::deps
|
||||
@@ -123,10 +114,6 @@ class nova::logging(
|
||||
$log_dir_real = pick($::nova::log_dir,$log_dir)
|
||||
$debug_real = pick($::nova::debug,$debug)
|
||||
|
||||
if $verbose {
|
||||
warning('verbose is deprecated, has no effect and will be removed after Newton cycle.')
|
||||
}
|
||||
|
||||
oslo::log { 'nova_config':
|
||||
debug => $debug_real,
|
||||
use_stderr => $use_stderr_real,
|
||||
|
4
releasenotes/notes/remove_verbose-ba40afdc93b87956.yaml
Normal file
4
releasenotes/notes/remove_verbose-ba40afdc93b87956.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