aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/neh/http_common.h
diff options
context:
space:
mode:
authorrobot-piglet <robot-piglet@yandex-team.com>2023-06-30 14:22:26 +0300
committerrobot-piglet <robot-piglet@yandex-team.com>2023-06-30 14:22:26 +0300
commit93a8bbb01d574d1c55ea51172eca469785df35e3 (patch)
tree3b3ed5e54e4c7b931b2e2c48409d14cb54d918e3 /library/cpp/neh/http_common.h
parentaaf08878eedef2e56302f84ec81213ce801f5b16 (diff)
downloadydb-93a8bbb01d574d1c55ea51172eca469785df35e3.tar.gz
Intermediate changes
Diffstat (limited to 'library/cpp/neh/http_common.h')
-rw-r--r--library/cpp/neh/http_common.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/library/cpp/neh/http_common.h b/library/cpp/neh/http_common.h
index a96f10a200..d19d1e4522 100644
--- a/library/cpp/neh/http_common.h
+++ b/library/cpp/neh/http_common.h
@@ -155,7 +155,6 @@ namespace NNeh {
struct TRequestSettings {
bool NoDelay = true;
EResolverType ResolverType = EResolverType::ETCP;
- bool UseAsyncSendRequest = false;
TRequestSettings& SetNoDelay(bool noDelay) {
NoDelay = noDelay;
@@ -166,11 +165,6 @@ namespace NNeh {
ResolverType = resolverType;
return *this;
}
-
- TRequestSettings& SetUseAsyncSendRequest(bool useAsyncSendRequest) {
- UseAsyncSendRequest = useAsyncSendRequest;
- return *this;
- }
};
struct TRequestGet {