Change client promotion strategy slightly, now it lines up on my system.

This commit is contained in:
Herbert Wolverson 2024-04-22 10:22:26 -05:00
parent 78a8f6dad1
commit 6cd3993a34

View File

@ -19,7 +19,7 @@ pub fn promote_clients_with_children(
.iter()
.filter(|c| c.parent_indices.contains(&idx))
.count();
if child_count > 0 {
if child_count > 1 {
client_sites_with_children.push(idx);
}
});