Skip to content

Commit a12c59d

Browse files
Fix the syntax in a few pages (#2403) (#2405)
1 parent cd157da commit a12c59d

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

modules/ROOT/pages/backup-restore/restore-backup.adoc

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -177,13 +177,11 @@ That means, if you restore `neo4j-2023-06-29T14-50-45.backup`, your database wil
177177
The following examples assume that you want to restore your data in a new database, called `mydatabase`.
178178
If you want to replace an existing database, you need to stop it first, and add the option `--overwrite-destination=true` to the restore command.
179179

180-
==== Restore a full backup
181-
182180
. Restore a database backup by running the following command:
183181
+
184182
[source, shell,role=nocopy noplay]
185183
----
186-
bin/neo4j-admin database restore --from-path=/path/to/backups/neo4j-2023-05-05T11-26-38.backup mydatabase
184+
bin/neo4j-admin database restore --from-path=/path/to/backups/neo4j-2023-06-29T14-51-33.backup mydatabase
187185
----
188186
+
189187
The `--from-path=` argument must contain the path to the last backup of a chain, in this case, `neo4j-2023-06-29T14-51-33.backup`.

modules/ROOT/pages/clustering/monitoring/endpoints.adoc

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -151,14 +151,12 @@ Therefore, details such as `leader` and `raftCommandsPerSecond` are database-spe
151151
|===
152152
| Field | Type |Optional| Example | Description
153153
| `core` | boolean | no | `true` | Used to distinguish between if the server is hosting the database in primary (core) or secondary mode.
154-
| `lastAppliedRaftIndex` | number | no | `4321` | Every transaction in a cluster is associated with a raft index.
155-
156-
Gives an indication of what the latest applied raft log index is.
154+
| `lastAppliedRaftIndex` | number | no | `4321` | Every transaction in a cluster is associated with a raft index. +
155+
Gives an indication of what the latest applied raft log index is.
157156
| `participatingInRaftGroup` | boolean | no | `false` | A participating member is able to vote.
158157
A primary is considered participating when it is part of the voter membership and has kept track of the leader.
159-
| `votingMembers` | string[] | no | `[]` | A member is considered a voting member when the leader has been receiving communication with it.
160-
161-
List of member's `memberId` that are considered part of the voting set by this primary.
158+
| `votingMembers` | string[] | no | `[]` | A member is considered a voting member when the leader has been receiving communication with it. +
159+
List of member's `memberId` that are considered part of the voting set by this primary.
162160
| `isHealthy` | boolean | no | `true` | Indicates that the local database on this cluster member has not encountered a critical error that can block database operation.
163161

164162
[CAUTION]

0 commit comments

Comments
 (0)