Remove deprecated amqp_allow_insecure_clients

... because it was deprecated during Wallaby cycle.

Change-Id: I2380426b87ecef3a96df75be026cb54ef98a6dde
This commit is contained in:
Takashi Kajinami 2022-02-08 22:26:57 +09:00
parent 95f5169393
commit 37183b1584
2 changed files with 4 additions and 10 deletions

View File

@ -293,10 +293,6 @@
# exceptions in the trove API service.
# Defaults to undef.
#
# [*amqp_allow_insecure_clients*]
# (Optional) Accept clients using either SSL or plain TCP
# Defaults to undef.
#
class trove(
$default_transport_url = $::os_service_default,
$notification_transport_url = $::os_service_default,
@ -361,18 +357,12 @@ class trove(
$nova_proxy_admin_pass = undef,
$nova_proxy_admin_tenant_name = undef,
$os_region_name = undef,
$amqp_allow_insecure_clients = undef,
) {
include trove::deps
include trove::policy
include trove::params
if $amqp_allow_insecure_clients != undef {
warning('The amqp_allow_insecure_clients parameter is deprecated and \
will be removed in a future release.')
}
if $nova_compute_url {
trove_config { 'DEFAULT/nova_compute_url': value => $nova_compute_url }
}

View File

@ -0,0 +1,4 @@
---
upgrade:
- |
The ``trove::amqp_allow_insecure_clients`` parameter has been removed.