diff options
author | slysheva <slysheva@yandex-team.com> | 2023-11-17 07:57:31 +0300 |
---|---|---|
committer | slysheva <slysheva@yandex-team.com> | 2023-11-17 08:41:58 +0300 |
commit | 591b2e71e69c8a2124ab0e0aae4803422c18a9c4 (patch) | |
tree | f815090b5451753ca8acf3a9d5a48b5352bc6c3d | |
parent | 61f02ff5468189d992e2b75e5b1242fe1236c2f5 (diff) | |
download | ydb-591b2e71e69c8a2124ab0e0aae4803422c18a9c4.tar.gz |
YT-20449: Fix use defaultUdfRegistryPath
YT-20449: fix defaultUdfRegistryPath
-rw-r--r-- | yt/yt/client/api/rpc_proxy/client_base.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt/yt/client/api/rpc_proxy/client_base.cpp b/yt/yt/client/api/rpc_proxy/client_base.cpp index 17d6fbdf8e..033ecfcafb 100644 --- a/yt/yt/client/api/rpc_proxy/client_base.cpp +++ b/yt/yt/client/api/rpc_proxy/client_base.cpp @@ -920,7 +920,7 @@ void FillRequestBySelectRowsOptionsBase( if (options.UdfRegistryPath) { request->set_udf_registry_path(*options.UdfRegistryPath); } else if (defaultUdfRegistryPath) { - request->set_udf_registry_path(*options.UdfRegistryPath); + request->set_udf_registry_path(*defaultUdfRegistryPath); } } |