2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-29 13:07:50 +00:00

[#2688] Add timeout units to example files

This commit is contained in:
Marcin Siodelski 2023-01-16 22:34:27 +01:00
parent 472fabf81b
commit 73ce04f973
2 changed files with 8 additions and 6 deletions

View File

@ -378,6 +378,7 @@
"user": "keatest", "user": "keatest",
// TCP user timeout while communicating with the database. // TCP user timeout while communicating with the database.
// It is specified in seconds.
"tcp-user-timeout": 100 "tcp-user-timeout": 100
}, },
{ {
@ -410,13 +411,13 @@
// serve-retry-continue // serve-retry-continue
"on-fail": "stop-retry-exit", "on-fail": "stop-retry-exit",
// Connection connect timeout. // Connection connect timeout in seconds.
"connect-timeout": 100, "connect-timeout": 100,
// Data read from the database timeout. // Data read from the database timeout in seconds.
"read-timeout": 120, "read-timeout": 120,
// Data write to the database timeout. // Data write to the database timeout in seconds.
"write-timeout": 180 "write-timeout": 180
} }
], ],

View File

@ -335,6 +335,7 @@
"user": "keatest", "user": "keatest",
// TCP user timeout while communicating with the database. // TCP user timeout while communicating with the database.
// It is specified in seconds.
"tcp-user-timeout": 100 "tcp-user-timeout": 100
}, },
{ {
@ -367,13 +368,13 @@
// serve-retry-continue // serve-retry-continue
"on-fail": "stop-retry-exit", "on-fail": "stop-retry-exit",
// Connection connect timeout. // Connection connect timeout in seconds.
"connect-timeout": 100, "connect-timeout": 100,
// Data read from the database timeout. // Data read from the database timeout in seconds.
"read-timeout": 120, "read-timeout": 120,
// Data write to the database timeout. // Data write to the database timeout in seconds.
"write-timeout": 180 "write-timeout": 180
} }
], ],