Skip to content

Commit 9d1e29a

Browse files
authored
Merge pull request #2 from eminsr/main
[fix] Db adapter database key name mismatch
2 parents 3b1f17e + e63d7e7 commit 9d1e29a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Queue/Adapters/Db.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public function connect($connection)
3535
'host' => $connection['host'] ?? '127.0.0.1',
3636
'username' => $connection['username'] ?? 'root',
3737
'password' => $connection['password'] ?? '',
38-
'dbname' => $connection['dbname'] ?? '',
38+
'dbname' => $connection['database'] ?? '',
3939
]);
4040
}
4141

0 commit comments

Comments
 (0)