From 3e5a8cb92d357eca206635eb031e479250f39547 Mon Sep 17 00:00:00 2001 From: Ryan Fox-Tyler <60440289+ryanfoxtyler@users.noreply.github.com> Date: Fri, 14 Feb 2025 10:29:33 -0500 Subject: [PATCH] update docs link in error message (#2170) **Description** Update docs link in error message **Checklist** - [X] Code compiles correctly and linting passes locally --- manifest.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.go b/manifest.go index 689dd7d41..66753788f 100644 --- a/manifest.go +++ b/manifest.go @@ -369,7 +369,7 @@ func ReplayManifestFile(fp *os.File, extMagic uint16) (Manifest, int64, error) { return Manifest{}, 0, //nolint:lll fmt.Errorf("manifest has unsupported version: %d (we support %d).\n"+ - "Please see https://dgraph.io/docs/badger/faq/#i-see-manifest-has-unsupported-version-x-we-support-y-error"+ + "Please see https://docs.hypermode.com/badger/troubleshooting#i-see-manifest-has-unsupported-version-x-we-support-y-error"+ " on how to fix this.", version, badgerMagicVersion) }