Skip to content

Commit c3804f3

Browse files
committed
ci error fix
1 parent 97946d6 commit c3804f3

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

DomCon/domainList_status/cpu_status.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77

88
// 인터페이스 구현체
99

10-
func (vs *VCPUStatus) EmitStatus(dls *DomainListStatus) error {
10+
func (vs *VCPUStatus) EmitStatus(dls *DomainListStatus) {
1111
vs.Total = int(dls.VCPUTotal)
1212
vs.Allocated = int(dls.VcpuAllocated)
1313
vs.Sleeping = int(dls.VcpuSleeping)
@@ -16,8 +16,6 @@ func (vs *VCPUStatus) EmitStatus(dls *DomainListStatus) error {
1616
if vs.Idle < 0 {
1717
vs.Idle = 0
1818
}
19-
20-
return nil
2119
}
2220

2321
func (dls *DomainListStatus) Update() {

0 commit comments

Comments
 (0)