From bfb20202da73451f997b711447ee68bc3635868e Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Wed, 12 Jul 2023 15:34:46 +0200 Subject: dashboard: always return full UserSpaceArch Currently we return an empty value for amd64, so that it's not reported. Let's make the API more flexible -- return the value as is and let specific reporters decide whether to mention amd64 or not. --- dashboard/app/reporting.go | 2 -- 1 file changed, 2 deletions(-) (limited to 'dashboard/app/reporting.go') diff --git a/dashboard/app/reporting.go b/dashboard/app/reporting.go index 071d67339..e29d2da16 100644 --- a/dashboard/app/reporting.go +++ b/dashboard/app/reporting.go @@ -1569,8 +1569,6 @@ func kernelArch(arch string) string { switch arch { case targets.I386: return "i386" - case targets.AMD64: - return "" // this is kinda the default, so we don't notify about it default: return arch } -- cgit mrf-deployment