fix: Fix system information refresh not taking effect (#11844)

This commit is contained in:
ssongliu
2026-02-10 03:07:04 +00:00
committed by GitHub
parent 2aa89699c1
commit 8f7d3df76d
+1 -1
View File
@@ -142,7 +142,7 @@ func (u *DashboardService) LoadCurrentInfoForNode() *dto.NodeCurrent {
func (u *DashboardService) LoadBaseInfo(ioOption string, netOption string) (*dto.DashboardBase, error) {
var baseInfo dto.DashboardBase
hostInfo, err := psutil.HOST.GetHostInfo(false)
hostInfo, err := psutil.HOST.GetHostInfo(true)
if err != nil {
return nil, err
}