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:
Daniele Alessandri
2009-12-30 21:57:51 +01:00
parent f3aeecef37
commit 31234d694e
+1 -1
View File
@@ -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 {