We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f01913 commit 35b36adCopy full SHA for 35b36ad
src/source_plugin/client/zone_creation_watcher.rs
@@ -45,8 +45,8 @@ impl ZoneWatcher {
45
}
46
47
48
- // purge everything that's not in the current ready-zone list
49
- 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;
50
51
Err(error) => {
52
error!("failed to read zones from daemon: {error}");
0 commit comments