diff --git a/services/introspection/local.go b/services/introspection/local.go index dd0824d956ac..9ee5b9d7c68c 100644 --- a/services/introspection/local.go +++ b/services/introspection/local.go @@ -146,6 +146,9 @@ func (l *Local) getUUID() (string, error) { } return "", err } + if len(data) == 0 { + return l.generateUUID() + } u := string(data) if _, err := uuid.Parse(u); err != nil { return "", err