From 66ebcea0d102b8c131134411893ef175e55b3bf8 Mon Sep 17 00:00:00 2001 From: Stefano Ottolenghi Date: Wed, 7 Feb 2024 15:27:03 +0100 Subject: [PATCH] fix default db link in go manual --- go-manual/modules/ROOT/pages/transactions.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go-manual/modules/ROOT/pages/transactions.adoc b/go-manual/modules/ROOT/pages/transactions.adoc index 6285be16..9c984553 100644 --- a/go-manual/modules/ROOT/pages/transactions.adoc +++ b/go-manual/modules/ROOT/pages/transactions.adoc @@ -440,7 +440,7 @@ For a complete list of `ResultWithContext` methods, see link:https://pkg.go.dev/ It is recommended to *always specify the database explicitly* with the configuration parameter `DatabaseName` upon session creation, even on single-database instances. This allows the driver to work more efficiently, as it does not have to resolve the home database first. -If no database is given, the link:{neo4j-docs-base-uri}/operations-manual/current/manage-databases/introduction#manage-databases-default[default database] set in the Neo4j instance settings is used. +If no database is given, the link:{neo4j-docs-base-uri}/operations-manual/current/database-administration/#manage-databases-default[default database] set in the Neo4j instance settings is used. [source, go] ----