8000 Move async task cleanup before transaction destruction by jbajic · Pull Request #21734 · arangodb/arangodb · GitHub
[go: up one dir, main page]

Skip to content

Move async task cleanup before transaction destruction #21734

8000
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Jun 3, 2025
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fix assert
  • Loading branch information
jbajic committed Jun 2, 2025
commit 935f4c8b8e97e4bd0da9578a3771978445693afc
2 changes: 1 addition & 1 deletion arangod/Aql/ExecutionEngine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ ExecutionEngine::~ExecutionEngine() {

TRI_ASSERT(std::count_if(
_blocks.begin(), _blocks.end(),
[](const auto& block) { return block->isPrefetchTaskDone(); }))
[](const auto& block) { return !block->isPrefetchTaskDone(); }))
<< "Some prefetch tasks were not destroyed before";
stopAsyncTasks();

Expand Down
0