mirror of
https://github.com/henrygd/beszel.git
synced 2026-09-27 03:47:47 +02:00
fix(agent): promote existing entry when root key is already registered
When the root drive is also listed in EXTRA_FILESYSTEMS, its key is taken before addPartitionRootFs runs. Returning false there sent the agent to addLastResortRootFs, which picks the most active device and could register a different drive as root, overwriting that drive's extra entry. addPartitionRootFs has already resolved the root device, so promote the existing entry to root instead.
This commit is contained in:
@@ -155,7 +155,7 @@ func registerFilesystemStats(existing map[string]*system.FsStats, device, mountp
|
||||
|
||||
// addFsStat inserts a discovered filesystem if it resolves to a new tracking
|
||||
// key and reports whether it was added. The key selection itself lives in
|
||||
// buildFsStatRegistration so that logic can stay directly unit-tested.
|
||||
// registerFilesystemStats so that logic can stay directly unit-tested.
|
||||
func (d *diskDiscovery) addFsStat(device, mountpoint string, root bool, customName string) bool {
|
||||
key, fsStats, ok := registerFilesystemStats(d.agent.fsStats, device, mountpoint, root, customName, d.ctx)
|
||||
if !ok {
|
||||
@@ -212,10 +212,16 @@ func (d *diskDiscovery) addPartitionRootFs(device, mountpoint string) bool {
|
||||
if !match {
|
||||
return false
|
||||
}
|
||||
// The resolved I/O device is already known here, so use it directly to avoid
|
||||
// a second fallback search inside buildFsStatRegistration. Report failure if
|
||||
// the key was already taken (e.g. root drive listed in EXTRA_FILESYSTEMS) so
|
||||
// the caller can still fall back to addLastResortRootFs.
|
||||
// The root device is already resolved, so if it was registered earlier as an
|
||||
// extra filesystem (e.g. root drive listed in EXTRA_FILESYSTEMS), promote that
|
||||
// entry rather than letting addLastResortRootFs guess a different device.
|
||||
if stats, exists := d.agent.fsStats[fs]; exists {
|
||||
stats.Root = true
|
||||
stats.Mountpoint = mountpoint
|
||||
return true
|
||||
}
|
||||
// Use the resolved I/O device directly to avoid a second fallback search
|
||||
// inside registerFilesystemStats.
|
||||
return d.addFsStat(fs, mountpoint, true, "")
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user