From d59ca05d7d60e6230d2a27b464e8025436cf5d5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jens=20Pryce-=C3=85klundh?= <112686610+JPryce-Aklundh@users.noreply.github.com> Date: Mon, 11 Nov 2024 09:33:40 +0100 Subject: [PATCH 1/2] change query example --- .../ROOT/pages/clauses/listing-settings.adoc | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/modules/ROOT/pages/clauses/listing-settings.adoc b/modules/ROOT/pages/clauses/listing-settings.adoc index df859d1cb..9808f2730 100644 --- a/modules/ROOT/pages/clauses/listing-settings.adoc +++ b/modules/ROOT/pages/clauses/listing-settings.adoc @@ -180,13 +180,13 @@ For a full list of all available settings in Neo4j, refer to link:{neo4j-docs-ba == Listing settings with filtering on output columns The listed settings can be filtered by using the `WHERE` clause. -For example, the following query returns the name, value, and description of the first three settings starting with 'dbms': +For example, the following query returns the name, value, and description of the first three settings starting with 'server': .Query [source, cypher] ---- SHOW SETTINGS YIELD name, value, description -WHERE name STARTS WITH 'dbms' +WHERE name STARTS WITH 'server' RETURN name, value, description LIMIT 3 ---- @@ -196,17 +196,17 @@ LIMIT 3 |=== | name | value | description -| "dbms.cluster.catchup.client_inactivity_timeout" -| "10m" -| "The catchup protocol times out if the given duration elapses with no network activity. Every message received by the client from the server extends the timeout duration." +| "server.backup.enabled" +| "true" +| "Enable support for running online backups." -| "dbms.cluster.discovery.endpoints" -| null -| "A comma-separated list of endpoints that a server should contact in order to discover other cluster members. Typically, all cluster members, including the current server, must be specified in this list. The setting configures the endpoints for Discovery service V1." +| "server.backup.exec_connector.command" +| "" +| "Command to execute for ExecDataConnector list." -| "dbms.cluster.discovery.log_level" -| "WARN" -| "The level of middleware logging." +| "server.backup.exec_connector.scheme" +| "" +| "Schemes ExecDataConnector will match on." 3+d|Rows: 3 |=== From f796bfeb298b5abd89a918a90985693af8d66d9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jens=20Pryce-=C3=85klundh?= <112686610+JPryce-Aklundh@users.noreply.github.com> Date: Mon, 11 Nov 2024 09:40:34 +0100 Subject: [PATCH 2/2] remove full stops --- modules/ROOT/pages/clauses/listing-settings.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/ROOT/pages/clauses/listing-settings.adoc b/modules/ROOT/pages/clauses/listing-settings.adoc index 9808f2730..3b8490dfe 100644 --- a/modules/ROOT/pages/clauses/listing-settings.adoc +++ b/modules/ROOT/pages/clauses/listing-settings.adoc @@ -202,11 +202,11 @@ LIMIT 3 | "server.backup.exec_connector.command" | "" -| "Command to execute for ExecDataConnector list." +| "Command to execute for ExecDataConnector list" | "server.backup.exec_connector.scheme" | "" -| "Schemes ExecDataConnector will match on." +| "Schemes ExecDataConnector will match on" 3+d|Rows: 3 |===