Skip to content

Commit

Permalink
fix traverse build path memory tracker (#5619)
Browse files Browse the repository at this point in the history
  • Loading branch information
nevermore3 authored and Sophie-Xie committed Jul 20, 2023
1 parent c113ffa commit 512d65f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/graph/executor/query/TraverseExecutor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -478,6 +478,7 @@ folly::Future<Status> TraverseExecutor::buildPathMultiJobs(size_t minStep, size_
std::vector<Row> TraverseExecutor::buildPath(const Value& initVertex,
size_t minStep,
size_t maxStep) {
memory::MemoryCheckGuard guard;
auto vidIter = adjList_.find(initVertex);
if (vidIter == adjList_.end()) {
return std::vector<Row>();
Expand Down

0 comments on commit 512d65f

Please sign in to comment.