Skip to content

Commit

Permalink
Merge pull request #94 from ddebroy/syserrfix
Browse files Browse the repository at this point in the history
Fix error string to not be VM specific
  • Loading branch information
k8s-ci-robot authored Oct 15, 2020
2 parents 10bd880 + 1caa1b2 commit 93e5ac3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/os/system/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ func (APIImplementor) GetBIOSSerialNumber() (string, error) {
}
})
if len(lines) != 2 {
return "", fmt.Errorf("received unexpected value retrieving vm uuid: %q", string(result))
return "", fmt.Errorf("received unexpected value retrieving host uuid: %q", string(result))
}
return lines[1], nil
}

0 comments on commit 93e5ac3

Please sign in to comment.