Skip to content

Commit

Permalink
[fix] Db adapter database key name mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
eminsr authored Sep 19, 2024
1 parent 3b1f17e commit e63d7e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Queue/Adapters/Db.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public function connect($connection)
'host' => $connection['host'] ?? '127.0.0.1',
'username' => $connection['username'] ?? 'root',
'password' => $connection['password'] ?? '',
'dbname' => $connection['dbname'] ?? '',
'dbname' => $connection['database'] ?? '',
]);
}

Expand Down

0 comments on commit e63d7e7

Please sign in to comment.