Skip to content

Commit

Permalink
Resolves FoundationDB#84: Cursor ID should always be long
Browse files Browse the repository at this point in the history
  • Loading branch information
apkar committed Mar 22, 2019
1 parent f9183b9 commit 69bf91f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ExtCmd.actor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1314,7 +1314,7 @@ struct ListIndexesCmd {
// clang-format off
reply->addDocument(BSON(
"cursor" << BSON(
"id" << 0 <<
"id" << (long long) 0 <<
"ns" << msg->ns.first + ".$cmd.listIndexes." + msg->ns.second <<
"firstBatch" << indexList.arr()) <<
"ok" << 1.0
Expand Down

0 comments on commit 69bf91f

Please sign in to comment.