Skip to content

Commit

Permalink
Merge pull request #2 from eminsr/main
Browse files Browse the repository at this point in the history
[fix] Db adapter database key name mismatch
  • Loading branch information
mychidarko authored Sep 29, 2024
2 parents 3b1f17e + e63d7e7 commit 9d1e29a
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 9d1e29a

Please sign in to comment.