Skip to content

Commit

Permalink
mv instance_state.rs instance_watcher.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkw committed Apr 25, 2024
1 parent 30e3488 commit da54164
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions nexus/src/app/background/init.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use super::dns_config;
use super::dns_propagation;
use super::dns_servers;
use super::external_endpoints;
use super::instance_state;
use super::instance_watcher;
use super::inventory_collection;
use super::metrics_producer_gc;
use super::nat_cleanup;
Expand Down Expand Up @@ -346,7 +346,7 @@ impl BackgroundTasks {
};

let task_instance_watcher = {
let watcher = instance_state::InstanceWatcher::new(
let watcher = instance_watcher::InstanceWatcher::new(
datastore,
resolver.clone(),
);
Expand Down
2 changes: 1 addition & 1 deletion nexus/src/app/background/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ mod dns_propagation;
mod dns_servers;
mod external_endpoints;
mod init;
mod instance_state;
mod instance_watcher;
mod inventory_collection;
mod metrics_producer_gc;
mod nat_cleanup;
Expand Down

0 comments on commit da54164

Please sign in to comment.