From bb58646f1fe70cdae939af8131f9330da28323b4 Mon Sep 17 00:00:00 2001 From: Marcin Siodelski Date: Mon, 16 Jan 2023 22:34:27 +0100 Subject: [PATCH] [#2688] Add timeout units to example files --- doc/examples/kea4/all-keys.json | 7 ++++--- doc/examples/kea6/all-keys.json | 7 ++++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/doc/examples/kea4/all-keys.json b/doc/examples/kea4/all-keys.json index b64450db23..7946a73e6a 100644 --- a/doc/examples/kea4/all-keys.json +++ b/doc/examples/kea4/all-keys.json @@ -352,6 +352,7 @@ "user": "keatest", // TCP user timeout while communicating with the database. + // It is specified in seconds. "tcp-user-timeout": 100 }, { @@ -384,13 +385,13 @@ // serve-retry-continue "on-fail": "stop-retry-exit", - // Connection connect timeout. + // Connection connect timeout in seconds. "connect-timeout": 100, - // Data read from the database timeout. + // Data read from the database timeout in seconds. "read-timeout": 120, - // Data write to the database timeout. + // Data write to the database timeout in seconds. "write-timeout": 180 } ], diff --git a/doc/examples/kea6/all-keys.json b/doc/examples/kea6/all-keys.json index 5e2f438b82..ba3c66f828 100644 --- a/doc/examples/kea6/all-keys.json +++ b/doc/examples/kea6/all-keys.json @@ -311,6 +311,7 @@ "user": "keatest", // TCP user timeout while communicating with the database. + // It is specified in seconds. "tcp-user-timeout": 100 }, { @@ -343,13 +344,13 @@ // serve-retry-continue "on-fail": "stop-retry-exit", - // Connection connect timeout. + // Connection connect timeout in seconds. "connect-timeout": 100, - // Data read from the database timeout. + // Data read from the database timeout in seconds. "read-timeout": 120, - // Data write to the database timeout. + // Data write to the database timeout in seconds. "write-timeout": 180 } ], -- 2.47.2