Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## Changelog

5.1.3 - 2025-08-22
Comment thread
BjoernHelmbold marked this conversation as resolved.
Outdated
- Add support for Sentinel password

5.1.2 - 2025-07-07
- Textual changes

Expand Down
2 changes: 1 addition & 1 deletion Queue/Backend/Sentinel.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ protected function connect()

foreach ($hosts as $index => $host) { // Sort or randomize as appropriate
try {
$configuredClient = new \Credis_Client($host, $ports[$index], $timeout = 0.5, $persistent = false);
$configuredClient = new \Credis_Client($host, $ports[$index], $timeout = 0.5, $persistent = false, $database = 0, $this->password);
Comment thread
snake14 marked this conversation as resolved.
Outdated
Comment thread
BjoernHelmbold marked this conversation as resolved.
Outdated
$configuredClient->forceStandalone();
$configuredClient->connect();
$configuredSentinel = new \Credis_Sentinel($configuredClient);
Expand Down