Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
parkererickson-tg committed Sep 6, 2024
1 parent 2efc5d1 commit 1bbb8b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eventual-consistency-service/app/graphrag/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -341,8 +341,8 @@ async def add_rels_between_types(conn):
logger.error(f"Check Vert EntityType err:\n{resp.text}")
return {"error": True, "message": resp.text}
else:
res = resp.json()["results"][0]["relationships_inserted"]
logger.info(resp.json()["results"])
res = resp.json()
logger.info(resp.json())
return res

async def check_vertex_has_desc(conn, i: int):
Expand Down

0 comments on commit 1bbb8b6

Please sign in to comment.