提交 0d4390c1 编写于 作者: A Alexey Milovidov

zkutil: fixed error [#METR-13153].

上级 24be223a
......@@ -62,7 +62,7 @@ void ZooKeeper::processEvent(zhandle_t * zh, int type, int state, const char * p
void ZooKeeper::init(const std::string & hosts_, int32_t sessionTimeoutMs_)
{
log = &Logger::get("ZooKeeper");
log = &Logger::get("ZooKeeper");
zoo_set_debug_level(ZOO_LOG_LEVEL_ERROR);
hosts = hosts_;
sessionTimeoutMs = sessionTimeoutMs_;
......@@ -341,7 +341,10 @@ int32_t ZooKeeper::getImpl(const std::string & path, std::string & res, Stat * s
if (stat_)
*stat_ = stat;
res = std::string(buffer, buffer_len);
if (buffer_len < 0) /// Такое бывает, если в ноде в ZK лежит NULL. Не будем отличать его от пустой строки.
res.clear();
else
res.assign(buffer, buffer_len);
}
return code;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册