Commit cdf7f5b8 authored by Martin Blix Grydeland's avatar Martin Blix Grydeland

Introduce a parameter value for allowed clock step

This value is used in calculations that could reveal clock step,
specifying the amount of error we allow before panicking. It defaults
to a conservative 1 second.
parent 9efd7fca
......@@ -306,6 +306,21 @@ PARAM(
/* func */ NULL
)
PARAM(
/* name */ clock_step,
/* typ */ timeout,
/* min */ "0.000",
/* max */ NULL,
/* default */ "1.000",
/* units */ "seconds",
/* flags */ 0,
/* s-text */
"How much observed clock step we are willing to accept before "
"we panic.",
/* l-text */ "",
/* func */ NULL
)
PARAM(
/* name */ connect_timeout,
/* typ */ timeout,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment