Skip to content

Commit

Permalink
Fixed url escape
Browse files Browse the repository at this point in the history
  • Loading branch information
GrigoriyPA committed Apr 4, 2024
1 parent 282f56e commit 89eb0ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ydb/library/yql/providers/s3/actors/yql_s3_read_actor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1829,7 +1829,7 @@ class TS3ReadCoroImpl : public TActorCoroImpl {
if (it != RangeCache.end()) {
return it->second;
}
RetryStuff->Gateway->Download(UrlEscapeRet(Url + Path, true), RetryStuff->Headers,
RetryStuff->Gateway->Download(RetryStuff->Url, RetryStuff->Headers,
range.Offset,
range.Length,
std::bind(&OnResult, GetActorSystem(), SelfActorId, range, ++RangeCookie, std::placeholders::_1),
Expand Down

0 comments on commit 89eb0ae

Please sign in to comment.