Fix incorrect handling for SCAN results

fixes #5065
This commit is contained in:
Gunnar Beutner 2017-03-15 14:53:50 +01:00
parent 4da5f7d52c
commit 1cab2d7b16
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ void RedisWriter::UpdateSubscriptions(void)
VERIFY(reply->elements % 2 == 0); VERIFY(reply->elements % 2 == 0);
redisReply *cursorReply = reply->element[0]; redisReply *cursorReply = reply->element[0];
cursor = cursorReply->integer; cursor = Convert::ToLong(cursorReply->str);
redisReply *keysReply = reply->element[1]; redisReply *keysReply = reply->element[1];