From d17685c540f1b2c3bfc3c907b2b14a9c165b7d17 Mon Sep 17 00:00:00 2001 From: Jesper Ek Date: Fri, 19 Dec 2025 00:21:19 +0100 Subject: [PATCH] fix non unique fingerprint (#1556) --- agent/agent.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/agent/agent.go b/agent/agent.go index 95ad85de..a8d0482d 100644 --- a/agent/agent.go +++ b/agent/agent.go @@ -233,7 +233,8 @@ func (a *Agent) getFingerprint() string { // if no fingerprint is found, generate one fingerprint, err := host.HostID() - if err != nil || fingerprint == "" { + // we ignore a commonly known "product_uuid" known not to be unique + if err != nil || fingerprint == "" || fingerprint == "03000200-0400-0500-0006-000700080009" { fingerprint = a.systemDetails.Hostname + a.systemDetails.CpuModel }