diff options
author | vitalyisaev <vitalyisaev@ydb.tech> | 2023-12-05 11:05:50 +0300 |
---|---|---|
committer | vitalyisaev <vitalyisaev@ydb.tech> | 2023-12-05 11:52:58 +0300 |
commit | 35dbdd727c05367b340b5d47585458adf47253eb (patch) | |
tree | 37e39ccbe7c1fbbb222d87aceb3a5f2fd5388ac6 | |
parent | f8aad3973e9a71421a7730536878cee872e679e1 (diff) | |
download | ydb-35dbdd727c05367b340b5d47585458adf47253eb.tar.gz |
YQ Connector:fix ydb/core/kqp/ut/federated_query/generic tests
-rw-r--r-- | ydb/core/kqp/ut/federated_query/generic/connector_recipe_ut_helpers.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ydb/core/kqp/ut/federated_query/generic/connector_recipe_ut_helpers.h b/ydb/core/kqp/ut/federated_query/generic/connector_recipe_ut_helpers.h index 2007773cbc..6ea689e3aa 100644 --- a/ydb/core/kqp/ut/federated_query/generic/connector_recipe_ut_helpers.h +++ b/ydb/core/kqp/ut/federated_query/generic/connector_recipe_ut_helpers.h @@ -4,9 +4,9 @@ #include <util/system/env.h> inline const TString GetConnectorHost() { - return GetEnv("YQL_RECIPE_CONNECTOR_GRPC_HOST", "localhost"); + return GetEnv("YDB_CONNECTOR_RECIPE_GRPC_HOST", "localhost"); } inline ui32 GetConnectorPort() { - return FromString<ui32>(GetEnv("YQL_RECIPE_CONNECTOR_GRPC_PORT")); + return FromString<ui32>(GetEnv("YDB_CONNECTOR_RECIPE_GRPC_PORT")); } |