Merge pull request #3968 from citusdata/fix_bin_protocol

Fix default value of EnableBinaryProtocol
pull/3958/head
Önder Kalacı 2020-07-02 14:18:20 +02:00 committed by GitHub
commit c0325d55d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -442,7 +442,7 @@ struct TaskPlacementExecution;
/* GUC, determining whether Citus opens 1 connection per task */ /* GUC, determining whether Citus opens 1 connection per task */
bool ForceMaxQueryParallelization = false; bool ForceMaxQueryParallelization = false;
int MaxAdaptiveExecutorPoolSize = 16; int MaxAdaptiveExecutorPoolSize = 16;
bool EnableBinaryProtocol = true; bool EnableBinaryProtocol = false;
/* GUC, number of ms to wait between opening connections to the same worker */ /* GUC, number of ms to wait between opening connections to the same worker */
int ExecutorSlowStartInterval = 10; int ExecutorSlowStartInterval = 10;