Skip to content
Snippets Groups Projects
Commit 79d8611c authored by Patrick Meidl's avatar Patrick Meidl
Browse files

bug fix to cope with empty db passwords

parent d438775d
No related branches found
No related tags found
No related merge requests found
......@@ -643,7 +643,7 @@ sub get_database {
-host => $self->param("${prefix}host"),
-port => $self->param("${prefix}port"),
-user => $self->param("${prefix}user"),
-pass => $self->param("${prefix}pass"),
-pass => $self->param("${prefix}pass") || '',
-dbname => $self->param("${prefix}dbname"),
-group => $database,
);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment