Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion fixcore/fixcore/report/inspector_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ async def perform_benchmarks(
# store the security score of an account
if account_ids := context.accounts:
async with await db.search_list( # lookup node ids for all given accounts
QueryModel(Query.by("account", P("reported.id").is_in(account_ids)), model)
QueryModel(Query.by("account", P("reported.id").is_in(account_ids)), model), consistent=True
) as crsr:
async for acc in crsr:
if (node_id := value_in_path(acc, NodePath.node_id)) and (
Expand Down