Skip to content

Commit cdf38c4

Browse files
committed
Fix broken links after testing
1 parent 7a929ec commit cdf38c4

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

modules/ROOT/pages/authentication-authorization/index.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ The configuration steps are described in xref:authentication-authorization/sso-i
4747
*Custom-built plugin auth providers*::
4848
A plugin option for building custom integrations.
4949
It is recommended that this option is used as part of a custom delivery as negotiated with link:https://neo4j.com/professional-services/[Neo4j Professional Services].
50-
For more information, see link:{neo4j-docs-base-uri}/java-reference/{page-version}/extending-neo4j/security-plugins#extending-neo4j-security-plugins[Java Reference -> Authentication and authorization plugins].
50+
For more information, see link:{neo4j-docs-base-uri}/java-reference/{page-version}/extending-neo4j/security-plugins/[Java Reference -> Authentication and authorization plugins].
5151

5252
*Kerberos authentication and single sign-on*::
5353
In addition to LDAP, native, and custom providers, Neo4j supports Kerberos for authentication and single sign-on.

modules/ROOT/pages/authentication-authorization/manage-execute-permissions.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The elevated privileges only apply within the procedure or user-defined function
1515
--
1616
The steps below assume that the procedure or user-defined function is already developed and installed.
1717

18-
Please refer to link:{neo4j-docs-base-uri}/java-reference/{page-version}/extending-neo4j#extending-neo4j[Java Reference -> Extending Neo4j] for a description of creating and using user-defined procedures and functions.
18+
Please refer to link:{neo4j-docs-base-uri}/java-reference/{page-version}/extending-neo4j/[Java Reference -> Extending Neo4j] for a description of creating and using user-defined procedures and functions.
1919
--
2020

2121

modules/ROOT/pages/clustering/clustering-advanced/reconciler.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Executing an operation and getting back a successful response means that the req
1717
Servers can become aware the same operation at different times, since the `system` database is just another Raft group, where followers and replicas can lag behind the leader in some situations.
1818
Eventually, the new state gets propagated to all healthy servers, and they take action on it.
1919

20-
If you want to be sure that each server has processed an administrative operation before running the next action, you can use the link:{neo4j-docs-base-uri}/cypher-manual/current/administration/databases/#administration-wait-nowait[`WAIT`] keyword.
20+
If you want to be sure that each server has processed an administrative operation before running the next action, you can use the xref:database-administration/standard-databases/wait-options.adoc[`WAIT`] keyword.
2121
`WAIT` makes the statement not return until all servers have seen the transaction, and their reconciler has finished processing it.
2222

2323
.Example of database creation with `WAIT`
@@ -40,6 +40,6 @@ For instance, some servers might be offline when a database is created, or a dis
4040
In this situation, the operation has not _failed_ as a whole, since the database may even be running (although with less fault tolerance than you intended).
4141

4242
Some failed operations can just be re-tried: for example, `START DATABASE` can be re-run if not all members started successfully, and you think the cause of that has been resolved.
43-
Other failures only require the underlying problem to be resolved.
43+
Other failures only require the underlying problem to be resolved.
4444
When the issue is fixed, the reconciler will make the intended change, because it is still trying to achieve the requested state.
4545
For example, if a new server fails during a `DEALLOCATE DATABASES FROM SERVER` (meaning a database cannot be safely moved), fixing the new server should be enough to resolve the problem, as the new server will start its copy of the database as soon as the target is ready, allowing the deallocating server to shut down its copy.

modules/ROOT/pages/configuration/configuration-settings.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1843,7 +1843,7 @@ m|+++OFF+++
18431843
|===
18441844

18451845
For some queries, the planner can infer predicates such as labels or types from the graph structure that can improve estimating the number of rows that each operator produces.
1846-
for more information, see link:{neo4j-docs-base-uri}/cypher-manual/current/planning-and-tuning/execution-plans/#runtimes-reading-execution-plans[Cypher Manual -> Execution plans and query tuning -> Understanding execution plans]. +
1846+
for more information, see link:{neo4j-docs-base-uri}/cypher-manual/current/planning-and-tuning/execution-plans/[Cypher Manual -> Execution plans and query tuning -> Understanding execution plans]. +
18471847
For details on how to configure this setting on a per-query basis,effectively overriding this setting on that particular query, see link:{neo4j-docs-base-uri}/cypher-manual/current/planning-and-tuning/query-tuning/#cypher-infer-schema-parts[Cypher Manual -> Query tuning -> Cypher infer schema parts].
18481848

18491849
// In general, inferring more information should improve the estimation and thereby the planner's decisions.

modules/ROOT/pages/configuration/ports.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ Default port: `3637`
264264
| `xref:configuration/configuration-settings.adoc#config_server.jvm.additional[+++server.jvm.additional=-Dcom.sun.management.jmxremote.port=3637+++]` | `3637` | Additional setting for exposing the Java Management Extensions (JMX).
265265
|===
266266

267-
For further information, see link:{neo4j-docs-base-uri}/java-reference/{page-version}/jmx-metrics#jmx-metrics[Java Reference -> JMX metrics] and https://docs.oracle.com/javase/1.5.0/docs/guide/management/agent.html[the official documentation on Monitoring and Management Using JMX].
267+
For further information, see link:{neo4j-docs-base-uri}/java-reference/{page-version}/jmx-metrics/[Java Reference -> JMX metrics] and https://docs.oracle.com/javase/1.5.0/docs/guide/management/agent.html[the official documentation on Monitoring and Management Using JMX].
268268

269269

270270
=== Remote debugging
@@ -278,4 +278,4 @@ Default port: `5005`
278278
| `xref:configuration/configuration-settings.adoc#config_server.jvm.additional[+++server.jvm.additional=-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005+++]` | `:5005` | Additional setting for exposing remote debugging.
279279
|===
280280

281-
For more information, see the link:{neo4j-docs-base-uri}/java-reference/{page-version}/extending-neo4j/server-debugging#server-debugging[Java Reference -> Setup for remote debugging].
281+
For more information, see the link:{neo4j-docs-base-uri}/java-reference/{page-version}/extending-neo4j/server-debugging/[Java Reference -> Setup for remote debugging].

modules/ROOT/pages/database-administration/composite-databases/querying-composite-databases.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ In this case, once selecting `cineasts.latest`, and once selecting `cineasts.upc
113113
[[composite-databases-queries-listing-graphs]]
114114
=== Listing graphs
115115

116-
The built-in function link:{neo4j-docs-base-uri}/cypher-manual/current/functions/query-functions#functions-graph-names[`graph.names()`] returns a list containing the names of all constituent graphs on the current Composite database.
116+
The built-in function link:{neo4j-docs-base-uri}/cypher-manual/current/functions/#header-query-functions-graph[`graph.names()`] returns a list containing the names of all constituent graphs on the current Composite database.
117117

118118
.The `graph.names()` function
119119
====

0 commit comments

Comments
 (0)