Skip to content

Commit

Permalink
Merge pull request #1639 from Expensify/main
Browse files Browse the repository at this point in the history
Update expensify_prod branch
  • Loading branch information
MariaHCD authored Jan 29, 2024
2 parents 9025f94 + 482a4bd commit 65d0312
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions BedrockServer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1691,10 +1691,11 @@ void BedrockServer::_status(unique_ptr<BedrockCommand>& command) {
pluginList.push_back(SComposeJSONObject(pluginData));
}
content["isLeader"] = state == SQLiteNodeState::LEADING ? "true" : "false";
content["plugins"] = SComposeJSONArray(pluginList);
content["state"] = SQLiteNode::stateName(state);
content["version"] = _version;
content["host"] = args["-nodeHost"];
content["plugins"] = SComposeJSONArray(pluginList);
content["state"] = SQLiteNode::stateName(state);
content["version"] = _version;
content["host"] = args["-nodeHost"];
content["commandCount"] = BedrockCommand::getCommandCount();

{
// Make it known if anything is known to cause crashes.
Expand Down

0 comments on commit 65d0312

Please sign in to comment.