From c85d0c10f5b3bf6f6b464470fa3269eb8b055690 Mon Sep 17 00:00:00 2001 From: iosmanthus Date: Tue, 14 Jun 2022 18:29:40 +0800 Subject: [PATCH] fix the default value tikv.tls.reload_interval Signed-off-by: iosmanthus --- docs/src/administration/configuration.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/src/administration/configuration.md b/docs/src/administration/configuration.md index 94271f9e22..ecb8a58cd8 100644 --- a/docs/src/administration/configuration.md +++ b/docs/src/administration/configuration.md @@ -89,12 +89,12 @@ The following includes ThreadPool related parameters, which can be passed in thr - default: null #### tikv.tls.reload_interval -- The interval in seconds to poll the change of SSL context, if a change detected, the SSL context will be rebuilded. -- default: `0`, means disable TLS context reload +- The interval in seconds to poll the change of TLS context, if a change detected, the SSL context will be rebuilded. +- default: `"10s"`, `"0s"` means disable TLS context reload. #### tikv.conn.recycle_time - After `tikv.conn.recycle_time` (in seconds) with a TLS context reloading, the old connections will be forced to shutdown. -- default: `60s`. +- default: `"60s"`. #### tikv.rawkv.read_timeout_in_ms - RawKV read timeout in milliseconds. This parameter controls the timeout of `get` `getKeyTTL`.