Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
ljcui committed Mar 22, 2024
1 parent 3ac0018 commit 8b1b214
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions osgraph/api.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,9 @@ std::string get_repo_by_repo(lgraph_api::GraphDB &db, const std::string& request
auto repo_iter = txn.GetVertexByUniqueIndex("github_repo", "id", FieldData::Int32(repo_id));
auto repo_vid = repo_iter.GetId();
txn.Abort();
LOG_INFO() << "get_developers_by_repo begin";
auto developers = get_developers_by_repo(db, repo_vid);
LOG_INFO() << FMA_FMT("get_developers_by_repo end, developers size {}", developers.size());
res[repo_vid] = developers;
for (auto developer : developers) {
auto repos = get_repos_by_developer(db, developer);
Expand Down

0 comments on commit 8b1b214

Please sign in to comment.