mirror of https://github.com/citusdata/citus.git
Remove tracking old GUC
parent
2325a6c68a
commit
f93f85eadf
|
@ -2437,8 +2437,7 @@ ManageWorkerPool(WorkerPool *workerPool)
|
|||
* The worker pool has just started to establish connections. We need to
|
||||
* defer this initilization after StartNodeUserDatabaseConnection()
|
||||
* because for non-optional connections, we have some logic to wait
|
||||
* until a connection is allowed to be established for a duration of
|
||||
* citus.connection_retry_timeout.
|
||||
* until a connection is allowed to be established.
|
||||
*/
|
||||
INSTR_TIME_SET_ZERO(workerPool->poolStartTime);
|
||||
}
|
||||
|
|
|
@ -209,7 +209,6 @@ SELECT pg_sleep(0.1);
|
|||
|
||||
BEGIN;
|
||||
SET LOCAL citus.node_connection_timeout TO 1000;
|
||||
SET LOCAL citus.connection_retry_timeout TO 2000;
|
||||
SET LOCAL citus.force_max_query_parallelization TO ON;
|
||||
SELECT count(*) FROM test;
|
||||
count
|
||||
|
@ -378,8 +377,6 @@ BEGIN;
|
|||
(2 rows)
|
||||
|
||||
COMMIT;
|
||||
-- connection_retry_timeout cannot be smaller than node_connection_timeout
|
||||
SET citus.connection_retry_timeout TO 1000;
|
||||
-- in case other tests relies on these setting, reset them
|
||||
ALTER SYSTEM RESET citus.distributed_deadlock_detection_factor;
|
||||
ALTER SYSTEM RESET citus.recover_2pc_interval;
|
||||
|
|
|
@ -125,7 +125,6 @@ SELECT pg_sleep(0.1);
|
|||
|
||||
BEGIN;
|
||||
SET LOCAL citus.node_connection_timeout TO 1000;
|
||||
SET LOCAL citus.connection_retry_timeout TO 2000;
|
||||
SET LOCAL citus.force_max_query_parallelization TO ON;
|
||||
SELECT count(*) FROM test;
|
||||
COMMIT;
|
||||
|
@ -220,12 +219,6 @@ BEGIN;
|
|||
hostname, port;
|
||||
COMMIT;
|
||||
|
||||
|
||||
|
||||
|
||||
-- connection_retry_timeout cannot be smaller than node_connection_timeout
|
||||
SET citus.connection_retry_timeout TO 1000;
|
||||
|
||||
-- in case other tests relies on these setting, reset them
|
||||
ALTER SYSTEM RESET citus.distributed_deadlock_detection_factor;
|
||||
ALTER SYSTEM RESET citus.recover_2pc_interval;
|
||||
|
|
Loading…
Reference in New Issue