Skip to content

Commit

Permalink
[Trivial] Fix wording and comments (#4695)
Browse files Browse the repository at this point in the history
The comment about sled address allocation was removed because it was
implemented in #4545
  • Loading branch information
andrewjstone authored Dec 14, 2023
1 parent 6999098 commit c82d4fc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
4 changes: 2 additions & 2 deletions internal-dns/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ impl Host {
///
/// `DnsConfigBuilder` provides a much simpler interface for constructing DNS
/// zone data than using `DnsConfig` directly. That's because it makes a number
/// of assumptions that are true of the control plane DNS zone (all described in
/// RFD 248), but not true in general about DNS zones:
/// of assumptions that are true of the control plane DNS zones (all described
/// in RFD 248), but not true in general about DNS zones:
///
/// - We assume that there are only two kinds of hosts: a "sled" (an illumos
/// global zone) or a "zone" (an illumos non-global zone). (Both of these are
Expand Down
10 changes: 3 additions & 7 deletions sled-agent/src/rack_setup/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -191,11 +191,11 @@ impl RackSetupService {
/// Arguments:
/// - `log`: The logger.
/// - `config`: The config file, which is used to setup the rack.
/// - `storage_resources`: All the disks and zpools managed by this sled
/// - `storage_manager`: A handle for interacting with the storage manager
/// task
/// - `local_bootstrap_agent`: Communication channel by which we can send
/// commands to our local bootstrap-agent (e.g., to initialize sled
/// commands to our local bootstrap-agent (e.g., to start sled-agents)
/// - `bootstore` - A handle to call bootstore APIs
/// agents).
pub(crate) fn new(
log: Logger,
config: Config,
Expand Down Expand Up @@ -1083,10 +1083,6 @@ impl ServiceInner {
)
.await?;

// TODO Questions to consider:
// - What if a sled comes online *right after* this setup? How does
// it get a /64?

Ok(())
}
}
Expand Down

0 comments on commit c82d4fc

Please sign in to comment.