From ac608004bcbffdf1c9bc5e8d94a0cff19d5e71f7 Mon Sep 17 00:00:00 2001 From: Sergey Kuznetsov Date: Wed, 19 Nov 2025 19:17:44 +0000 Subject: [PATCH] docs: Fix graceful_period description (#2791) --- docs/config-description.md | 2 +- src/util/config/ConfigDescription.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/config-description.md b/docs/config-description.md index 2828a78a..e4a3f57f 100644 --- a/docs/config-description.md +++ b/docs/config-description.md @@ -391,7 +391,7 @@ This document provides a list of all available Clio configuration properties in - **Type**: double - **Default value**: `10` - **Constraints**: The value must be a positive double number. -- **Description**: The number of milliseconds the server waits to shutdown gracefully. If Clio does not shutdown gracefully after the specified value, it will be killed instead. +- **Description**: The number of seconds the server waits to shutdown gracefully. If Clio does not shutdown gracefully after the specified value, it will be killed instead. ### cache.num_diffs diff --git a/src/util/config/ConfigDescription.hpp b/src/util/config/ConfigDescription.hpp index 3afbb821..9a9ef619 100644 --- a/src/util/config/ConfigDescription.hpp +++ b/src/util/config/ConfigDescription.hpp @@ -255,7 +255,7 @@ This document provides a list of all available Clio configuration properties in .value = "The number of worker threads or processes that are responsible for managing and processing " "subscription-based tasks from `rippled`."}, KV{.key = "graceful_period", - .value = "The number of milliseconds the server waits to shutdown gracefully. If Clio does not shutdown " + .value = "The number of seconds the server waits to shutdown gracefully. If Clio does not shutdown " "gracefully after the specified value, it will be killed instead."}, KV{.key = "cache.num_diffs", .value = "The number of cursors generated is the number of changed (without counting deleted) objects in "