Skip to content
Snippets Groups Projects
Unverified Commit b14c4344 authored by Jun Guo's avatar Jun Guo Committed by GitHub
Browse files

Fix bug: "desc space create_on_group" show true but not group_name (#891)


Co-authored-by: default avatarYee <2520865+yixinglu@users.noreply.github.com>
parent d4b20c36
No related branches found
No related tags found
No related merge requests found
......@@ -73,7 +73,7 @@ folly::Future<Status> DescSpaceExecutor::execute() {
}
row.values.emplace_back(sAtomicEdge);
if (properties.__isset.group_name) {
row.values.emplace_back(properties.get_group_name());
row.values.emplace_back(*properties.get_group_name());
} else {
row.values.emplace_back("default");
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment