From 4aab71759ea6364ed3ba2454e7d233e850af8687 Mon Sep 17 00:00:00 2001 From: lance6716 Date: Mon, 2 Feb 2026 17:35:40 +0800 Subject: [PATCH 1/2] add correct config item in comment Corrected the config item in the SQL command. --- dynamic-config.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dynamic-config.md b/dynamic-config.md index a94a35c588f3f..1dced104f5cb1 100644 --- a/dynamic-config.md +++ b/dynamic-config.md @@ -94,7 +94,7 @@ If an error occurs during the batch modification, a warning is returned: {{< copyable "sql" >}} ```sql -set config tikv `log-level`='warn'; +set config tikv `log-level`='warn'; -- correct config item is log.level ``` ```sql From b382782e36606df02241e4ee9f8f8cccd2c35cad Mon Sep 17 00:00:00 2001 From: xixirangrang Date: Thu, 26 Feb 2026 09:40:39 +0800 Subject: [PATCH 2/2] Apply suggestions from code review Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> --- dynamic-config.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dynamic-config.md b/dynamic-config.md index 1dced104f5cb1..97e2554b7964b 100644 --- a/dynamic-config.md +++ b/dynamic-config.md @@ -94,7 +94,7 @@ If an error occurs during the batch modification, a warning is returned: {{< copyable "sql" >}} ```sql -set config tikv `log-level`='warn'; -- correct config item is log.level +set config tikv `log-level`='warn'; -- The correct config item is `log.level`. ``` ```sql