Skip to content
This repository has been archived by the owner on Jul 16, 2020. It is now read-only.

Commit

Permalink
ciao-controller: Fix duplicated json identifier in NodeStats
Browse files Browse the repository at this point in the history
This issue was identified by a new version of "go vet":
golang/go@4940a8379096

Signed-off-by: Rob Bradford <[email protected]>
  • Loading branch information
rbradford committed Oct 13, 2016
1 parent 3bb33ad commit 6df7b91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ciao-controller/types/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ type NodeStats struct {
Load int `json:"load"`
MemTotalMB int `json:"mem_total_mb"`
MemAvailableMB int `json:"mem_available_mb"`
DiskTotalMB int `json:"mem_total_mb"`
DiskTotalMB int `json:"disk_total_mb"`
DiskAvailableMB int `json:"disk_available_mb"`
CpusOnline int `json:"cpus_online"`
}
Expand Down

0 comments on commit 6df7b91

Please sign in to comment.