Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Nivras committed Dec 6, 2021
1 parent 45a27ff commit d85dea1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/storage/admin/AdminTaskManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,11 @@ void AdminTaskManager::handleUnreportedTasks() {
jobId,
taskId,
fut.value().status().toString());
if (fut.value().value() == nebula::cpp2::ErrorCode::E_SPACE_NOT_FOUND) {
// space has been droped, remove the task status.
keys.emplace_back(key.data(), key.size());
break;
}
ifAnyUnreported_ = true;
continue;
}
Expand Down

0 comments on commit d85dea1

Please sign in to comment.