Skip to content

Commit

Permalink
fix for dead nodes always passing filter (#6912) (#7522)
Browse files Browse the repository at this point in the history
  • Loading branch information
adameat authored Aug 7, 2024
1 parent 4e8a96c commit 07a2be0
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions ydb/core/viewer/json_nodes.h
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,19 @@ class TJsonNodes : public TViewerPipeClient<TJsonNodes> {
}
return false;
}
} else {
if (Storage && With == EWith::SpaceProblems) {
return false;
}
if (UptimeSeconds > 0) {
return false;
}
if (ProblemNodesOnly) {
return false;
}
if (Filter) {
return false;
}
}

return true;
Expand Down

0 comments on commit 07a2be0

Please sign in to comment.