summaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorMartin Polden <mpolden@mpolden.no>2024-04-29 15:51:33 +0200
committerGitHub <noreply@github.com>2024-04-29 15:51:33 +0200
commit519f812732053a80dcf7bf25c58a3bc58a48ed9c (patch)
tree10a47ec2605cb3974c0311507595a9587526308a /client
parent054818ce52e390e96e08074aa0cc6ef79bad8e52 (diff)
parentb0eb255746ccb3c8b164f9c541abe674263e39d0 (diff)
Merge pull request #31076 from vespa-engine/andreer/link-to-cpu-support-doc
link to cpu support doc
Diffstat (limited to 'client')
-rw-r--r--client/go/internal/osutil/run_cmd.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/go/internal/osutil/run_cmd.go b/client/go/internal/osutil/run_cmd.go
index 3847dcc912a..ab7bd1069c3 100644
--- a/client/go/internal/osutil/run_cmd.go
+++ b/client/go/internal/osutil/run_cmd.go
@@ -38,7 +38,7 @@ func analyzeError(err error) string {
msg := "died with signal: " + status.Signal().String()
switch status.Signal() {
case syscall.SIGILL:
- msg = msg + " (you probably have an older CPU than required)"
+ msg = msg + " (you probably have an older CPU than required, see https://docs.vespa.ai/en/cpu-support.html)"
}
return msg
}