Skip to content

Commit 07a2be0

Browse files
authored
fix for dead nodes always passing filter (#6912) (#7522)
1 parent 4e8a96c commit 07a2be0

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

ydb/core/viewer/json_nodes.h

+13
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)