From 8b4f1192caabe6eca7ef495015ceda8764f999dc Mon Sep 17 00:00:00 2001 From: Craig Osterhout <103533812+craig-osterhout@users.noreply.github.com> Date: Mon, 11 Sep 2023 14:47:26 -0700 Subject: [PATCH] language guide: fix broken link (#18154) Signed-off-by: Craig Osterhout --- content/language/golang/develop.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/language/golang/develop.md b/content/language/golang/develop.md index af47b0b8aa..a38aacdaeb 100644 --- a/content/language/golang/develop.md +++ b/content/language/golang/develop.md @@ -661,7 +661,7 @@ rest-server exited with code 1 # ... omitted output ... ``` -Because of the way we set up our deployment using `restart_policy`, the failing container is being restarted every 20 seconds. So, in order to fix the problem, we need to log into the database engine and create the user, we've done it before in the [] +Because of the way we set up our deployment using `restart_policy`, the failing container is being restarted every 20 seconds. So, in order to fix the problem, we need to log into the database engine and create the user, we've done it before in [Configure the database engine](#configure-the-database-engine). This is not a big deal. All we have to do is to connect to CockroachDB instance and run the three SQL commands to create the database and the user, as described above in the _Configure the database engine_ section above.