diff options
author | Alexey Efimov <xeno@prnwatch.com> | 2022-06-21 12:18:01 +0300 |
---|---|---|
committer | Alexey Efimov <xeno@prnwatch.com> | 2022-06-21 12:18:01 +0300 |
commit | 4e7ab90711e1955f1e2c42a94a72a4ab9db7755b (patch) | |
tree | aa01740f70d1778969b3bb0237a68cd6591ce39d | |
parent | 510a24d09da65ac274206fe9d6544bc722c18a56 (diff) | |
download | ydb-4e7ab90711e1955f1e2c42a94a72a4ab9db7755b.tar.gz |
enable async http server by default KIKIMR-14742
ref:10c41e8175bf6d8955756f649099f03a9ce71019
-rw-r--r-- | ydb/core/protos/config.proto | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/protos/config.proto b/ydb/core/protos/config.proto index cf08a5f359..b189b82868 100644 --- a/ydb/core/protos/config.proto +++ b/ydb/core/protos/config.proto @@ -697,7 +697,7 @@ message TFeatureFlags { optional bool EnableImplicitScanQueryInScripts = 61 [default = true]; optional bool EnablePredicateExtractForScanQueries = 62 [default = true]; optional bool AllowVDiskDefrag = 63 [default = true]; - optional bool EnableAsyncHttpMon = 64 [default = false]; + optional bool EnableAsyncHttpMon = 64 [default = true]; optional bool EnableChangefeeds = 65 [default = true]; } |