Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/source_plugin/client/zone_creation_watcher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ impl ZoneWatcher {
}
}

// purge everything that's not in the current ready-zone list
last_ready_zones.retain(|existing_zid| ready_zones.contains(existing_zid));
// update tracking: purge zones no longer ready, add newly ready zones
last_ready_zones = ready_zones;
}
Err(error) => {
error!("failed to read zones from daemon: {error}");
Expand Down
Loading