Skip to content

Commit 26b8362

Browse files
committed
Fix type
1 parent 7a6f4c4 commit 26b8362

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

manifests/backup/mysqldump.pp

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
$compression_command = 'bzcat -zc',
3434
$compression_extension = '.bz2',
3535
$backupmethod_package = undef,
36-
Array[Strings] $excludedatabases = [],
36+
Array[String] $excludedatabases = [],
3737
) inherits mysql::params {
3838
$backuppassword_unsensitive = if $backuppassword =~ Sensitive {
3939
$backuppassword.unwrap

manifests/server/backup.pp

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@
112112
$compression_command = undef,
113113
$compression_extension = undef,
114114
$backupmethod_package = $mysql::params::xtrabackup_package_name,
115-
Array[Strings] $excludedatabases = [],
115+
Array[String] $excludedatabases = [],
116116
) inherits mysql::params {
117117
if $prescript and $provider =~ /(mysqldump|mysqlbackup)/ {
118118
warning("The 'prescript' option is not currently implemented for the ${provider} backup provider.")

0 commit comments

Comments
 (0)