From 374a2d4fbb25984d7c1a9126ebff7a4e44d69e25 Mon Sep 17 00:00:00 2001 From: Yuriy Kaminskiy Date: Thu, 6 Nov 2025 21:32:17 +0300 Subject: [PATCH] http_gateway/curl: use correct enum Currently cosmetic (only low bits tested and they match) --- .../yql/providers/common/http_gateway/yql_http_gateway.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ydb/library/yql/providers/common/http_gateway/yql_http_gateway.cpp b/ydb/library/yql/providers/common/http_gateway/yql_http_gateway.cpp index 45b446879f2c..36d366839627 100644 --- a/ydb/library/yql/providers/common/http_gateway/yql_http_gateway.cpp +++ b/ydb/library/yql/providers/common/http_gateway/yql_http_gateway.cpp @@ -758,7 +758,7 @@ friend class IHTTPGateway; curl_easy_pause(streamHandle, CURLPAUSE_RECV_CONT); break; case TEasyCurlStream::EAction::Stop: - curl_easy_pause(streamHandle, CURL_WRITEFUNC_PAUSE); + curl_easy_pause(streamHandle, CURLPAUSE_RECV); break; case TEasyCurlStream::EAction::Drop: curl_multi_remove_handle(Handle, streamHandle);