mirror of
https://github.com/predis/predis.git
synced 2026-09-05 07:16:44 +00:00
Bugfix: ListPopFirstBlocking is actually BLPOP, not BRPOP. This is what happens when you write code while thinking about something else...
This commit is contained in:
+1
-1
@@ -1151,7 +1151,7 @@ class ListPopLast extends \Predis\InlineCommand {
|
||||
}
|
||||
|
||||
class ListPopFirstBlocking extends \Predis\InlineCommand {
|
||||
public function getCommandId() { return 'BRPOP'; }
|
||||
public function getCommandId() { return 'BLPOP'; }
|
||||
}
|
||||
|
||||
class ListPopLastBlocking extends \Predis\InlineCommand {
|
||||
|
||||
Reference in New Issue
Block a user