Skip to content

Commit c921a59

Browse files
authored
fix for dead nodes always passing filter (#6912)
1 parent d6b792e commit c921a59

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

ydb/core/viewer/json_nodes.h

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -285,6 +285,19 @@ class TJsonNodes : public TViewerPipeClient<TJsonNodes> {
285285
}
286286
return false;
287287
}
288+
} else {
289+
if (Storage && With == EWith::SpaceProblems) {
290+
return false;
291+
}
292+
if (UptimeSeconds > 0) {
293+
return false;
294+
}
295+
if (ProblemNodesOnly) {
296+
return false;
297+
}
298+
if (Filter) {
299+
return false;
300+
}
288301
}
289302

290303
return true;

0 commit comments

Comments
 (0)