Remove watch_log_file

The option was deprecated during the 2024.2 cycle[1]. Processes may
fail to start when it is set to True[2] so supporting it is no longer
useful.

[1] 31603ac6dacd0b47ec9f02d99bfdd0a7b683119c
[2] b977cb9becbeaaa67bb663bd8db5aa6846e495b9

Change-Id: Iff16deb64b2b2776aa5deab4d27247b8d58022ac
This commit is contained in:
Takashi Kajinami
2025-04-16 20:54:18 +09:00
parent 90d291e7f7
commit 12a3303211
2 changed files with 4 additions and 9 deletions

View File

@@ -106,12 +106,6 @@
# Defaults to $facts['os_service_default']
# Example: 'Y-%m-%d %H:%M:%S'
#
# DEPRECATED PARAMETERS
#
# [*watch_log_file*]
# (Optional) Uses logging handler designed to watch file system (boolean value).
# Defaults to undef
#
class keystone::logging(
$use_syslog = $facts['os_service_default'],
$use_journal = $facts['os_service_default'],
@@ -133,8 +127,6 @@ class keystone::logging(
$instance_format = $facts['os_service_default'],
$instance_uuid_format = $facts['os_service_default'],
$log_date_format = $facts['os_service_default'],
# DEPRECATED PARAMETERS
$watch_log_file = undef,
) {
include keystone::deps
@@ -145,7 +137,6 @@ class keystone::logging(
log_date_format => $log_date_format,
log_file => $log_file,
log_dir => $log_dir,
watch_log_file => $watch_log_file,
use_syslog => $use_syslog,
use_journal => $use_journal,
use_json => $use_json,

View File

@@ -0,0 +1,4 @@
---
upgrade:
- |
The ``keystone::logging::watch_log_file`` parameter has been removed.