Skip to content

Commit

Permalink
v3.0.1 (#325)
Browse files Browse the repository at this point in the history
  • Loading branch information
Axlgrep committed Aug 15, 2018
1 parent c913698 commit 0089e93
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/pika_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@

#define PIKA_MAJOR 3
#define PIKA_MINOR 0
#define PIKA_PATCH 0
#define PIKA_PATCH 1

#endif // INCLUDE_PIKA_VERSION_H_
2 changes: 1 addition & 1 deletion src/pika_geo.cc
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ static void GetAllNeighbors(std::string & key, GeoRange & range, CmdRes & res) {
}
std::vector<blackwidow::ScoreMember> score_members;
s = g_pika_server->db()->ZRangebyscore(key, (double)min, (double)max, true, true, &score_members);
if (!s.ok()) {
if (!s.ok() && !s.IsNotFound()) {
res.SetRes(CmdRes::kErrOther, s.ToString());
return;
}
Expand Down

0 comments on commit 0089e93

Please sign in to comment.