Skip to content

Commit

Permalink
[FIX](ssh) 修复了主机状态的bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ssbeatty committed Jan 19, 2022
1 parent 81a7f88 commit 9e29427
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/transport/stat.go
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ func getFSInfo(client *Client, stats *Stats) error {
if err != nil {
continue
}
free, err := strconv.Atoi(parts[1])
free, err := strconv.Atoi(parts[2])
if err != nil {
continue
}
Expand Down

0 comments on commit 9e29427

Please sign in to comment.