apache::vhost::priority should be Integer

This change fixes the left over of [1] and makes sure the priority
parameter is an integer value, according to the type validation in
puppetlabs-apache 8.0.0 .

[1] 23584e89be

Related-Bug: #1983300
Change-Id: I6a47f32dbfc8a6c10bc9535d1208bf16a8470a08
This commit is contained in:
Takashi Kajinami 2022-08-27 12:29:42 +09:00
parent adfef39798
commit 33f273f416
1 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@
#
# [*priority*]
# (optional) The priority for the vhost.
# Defaults to '10'
# Defaults to 10
#
# [*threads*]
# (optional) The number of threads for the vhost.
@ -138,7 +138,7 @@ class glance::wsgi::apache (
$ssl_certs_dir = undef,
$wsgi_process_display_name = undef,
$threads = 1,
$priority = '10',
$priority = 10,
$access_log_file = undef,
$access_log_pipe = undef,
$access_log_syslog = undef,