check if machineid is non-empty
This commit is contained in:
parent
be977d1cc4
commit
7af45e9494
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ func generatePassword(length int) string {
|
||||||
// string.
|
// string.
|
||||||
func generateIDPrefix() (string, error) {
|
func generateIDPrefix() (string, error) {
|
||||||
prefix, err := machineid.ID()
|
prefix, err := machineid.ID()
|
||||||
if err == nil {
|
if err == nil && prefix != "" {
|
||||||
return prefix, nil
|
return prefix, nil
|
||||||
}
|
}
|
||||||
log.Debugf("failed to get machine-id with usual files: %s", err)
|
log.Debugf("failed to get machine-id with usual files: %s", err)
|
||||||
|
|
Loading…
Reference in a new issue