From 14df6d79988c955f96687e3009d8d853548d4932 Mon Sep 17 00:00:00 2001 From: Kamil Cudnik Date: Fri, 29 Apr 2016 11:48:22 -0700 Subject: [PATCH] Fix table set bug --- common/table.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/table.cpp b/common/table.cpp index 06d16a5f4..fde86fb41 100644 --- a/common/table.cpp +++ b/common/table.cpp @@ -76,7 +76,7 @@ void Table::set(std::string key, std::vector &values, const std::string &cmd = formatHMSET(getKeyName(key), values); - RedisReply r(m_db, cmd, REDIS_REPLY_STATUS); + RedisReply r(m_db, cmd, REDIS_REPLY_STATUS, true); r.checkStatusOK(); }