mirror of https://github.com/citusdata/citus.git
Fix description of citus.distributed_deadlock_detection_factor (#5860)
The long description of the `citus.distributed_deadlock_detection_factor` setting was incorrectly stating that 1000 would disable it. Instead -1 is the value that disables distributed deadlock detection.pull/6126/head
parent
43c2a1e88b
commit
1a01c896f0
|
@ -913,8 +913,8 @@ RegisterCitusConfigVariables(void)
|
|||
"citus.distributed_deadlock_detection_factor",
|
||||
gettext_noop("Sets the time to wait before checking for distributed "
|
||||
"deadlocks. Postgres' deadlock_timeout setting is "
|
||||
"multiplied with the value. If the value is set to"
|
||||
"1000, distributed deadlock detection is disabled."),
|
||||
"multiplied with the value. If the value is set to -1, "
|
||||
"distributed deadlock detection is disabled."),
|
||||
NULL,
|
||||
&DistributedDeadlockDetectionTimeoutFactor,
|
||||
2.0, -1.0, 1000.0,
|
||||
|
|
Loading…
Reference in New Issue