Skip to content

Commit

Permalink
wip: revert use tcp for 127.0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
frankiejol committed May 2, 2024
1 parent bab684a commit 5b48986
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Ravada.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3021,7 +3021,7 @@ sub _connect_dbh($self=undef) {

my $data_source = "DBI:$driver:$db";
$data_source = "DBI:$driver:database=$db;host=$host"
if $host && $host ne 'localhost' && $host ne '127.0.0.1';
if $host && $host ne 'localhost';

my $con;
for my $try ( 1 .. 10 ) {
Expand Down

0 comments on commit 5b48986

Please sign in to comment.