Merge pull request #841 from citusdata/reduce_min_task_tracker_delay

Reduce minimum value of task_tracker_delay to 1ms
pull/857/head
Metin Döşlü 2016-10-07 10:10:59 +03:00 committed by GitHub
commit 7e8efbe540
1 changed files with 1 additions and 1 deletions

View File

@ -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);