Skip to content

Commit 88dc7ee

Browse files
committed
Merge pull request puppetlabs#585 from backstop/master
Use space. Join seems to be defaulting to comma.
2 parents 0438db2 + fc580e1 commit 88dc7ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

manifests/validate_db_connection.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
undef => undef,
4141
default => "PGPASSWORD=${database_password}",
4242
}
43-
$cmd = join([$cmd_init, $cmd_host, $cmd_user, $cmd_port, $cmd_dbname])
43+
$cmd = join([$cmd_init, $cmd_host, $cmd_user, $cmd_port, $cmd_dbname], ' ')
4444
$validate_cmd = "/usr/local/bin/validate_postgresql_connection.sh ${sleep} ${tries} '${cmd}'"
4545

4646
# This is more of a safety valve, we add a little extra to compensate for the

0 commit comments

Comments
 (0)