mirror of https://github.com/citusdata/citus.git
Reduce minimum value of task_tracker_delay to 1ms
parent
770d09b48e
commit
d94a65e0e9
|
@ -392,7 +392,7 @@ RegisterCitusConfigVariables(void)
|
||||||
"before walking over these tasks again. This configuration "
|
"before walking over these tasks again. This configuration "
|
||||||
"value determines the length of that sleeping period."),
|
"value determines the length of that sleeping period."),
|
||||||
&TaskTrackerDelay,
|
&TaskTrackerDelay,
|
||||||
200, 10, 100000,
|
200, 1, 100000,
|
||||||
PGC_SIGHUP,
|
PGC_SIGHUP,
|
||||||
GUC_UNIT_MS,
|
GUC_UNIT_MS,
|
||||||
NULL, NULL, NULL);
|
NULL, NULL, NULL);
|
||||||
|
|
Loading…
Reference in New Issue