diff options
author | nadya73 <nadya73@yandex-team.com> | 2023-02-07 12:36:28 +0300 |
---|---|---|
committer | nadya73 <nadya73@yandex-team.com> | 2023-02-07 12:36:28 +0300 |
commit | 4535f4e711e69469a491902cd083b932d1e7f468 (patch) | |
tree | 7e48e10c5b0d33c70139e33c7cd29688561bbebd /library/cpp/yson | |
parent | 4d699431ca24f0ca0820f3ebb3f66db1a25a79f1 (diff) | |
download | ydb-4535f4e711e69469a491902cd083b932d1e7f468.tar.gz |
[mapreduce/yt]Support HTTPs using http client from yt/yt/core
Support HTTP client from yt/yt/core and HTTPs via its client.
Diffstat (limited to 'library/cpp/yson')
-rw-r--r-- | library/cpp/yson/parser_detail.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/cpp/yson/parser_detail.h b/library/cpp/yson/parser_detail.h index 44223caf12..bf9fbfcedf 100644 --- a/library/cpp/yson/parser_detail.h +++ b/library/cpp/yson/parser_detail.h @@ -219,7 +219,7 @@ namespace NYson { ch = TBase::template SkipSpaceAndGetChar<AllowFinish>(); } else if (ch != endSymbol) { ythrow TYsonException() << "Expected '" << KeyedItemSeparatorSymbol - << "' or '" << endSymbol << "' but '" << ch << "' found"; + << "' or '\\0' ' but '" << ch << "' found"; } } } @@ -247,7 +247,7 @@ namespace NYson { return true; } else if (ch != endSymbol) { ythrow TYsonException() << "Expected '" << ListItemSeparatorSymbol - << "' or '" << endSymbol << "' but '" << ch << "' found"; + << "' or '\\0' but '" << ch << "' found"; } return false; } |