Skip to content

Commit

Permalink
fix for dead nodes always passing filter (#6912)
Browse files Browse the repository at this point in the history
  • Loading branch information
adameat authored Jul 22, 2024
1 parent d6b792e commit c921a59
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 c921a59

Please sign in to comment.