diff options
author | uzhas <uzhas@ydb.tech> | 2023-08-24 17:06:48 +0300 |
---|---|---|
committer | uzhas <uzhas@ydb.tech> | 2023-08-24 17:22:06 +0300 |
commit | 2491ba899bf158101666fd335447efd32e27cc34 (patch) | |
tree | 81d562b35540926dfdf06e561e3b1875009c7b59 /library | |
parent | 9b8239370c4354cbd86f763d546469a7b3da3538 (diff) | |
download | ydb-2491ba899bf158101666fd335447efd32e27cc34.tar.gz |
ydb: support go code in OSS
Diffstat (limited to 'library')
-rw-r--r-- | library/cpp/lwtrace/protos/lwtrace.proto | 2 | ||||
-rw-r--r-- | library/cpp/unified_agent_client/proto/unified_agent.proto | 2 | ||||
-rw-r--r-- | library/go/core/buildinfo/buildinfo.go | 2 | ||||
-rw-r--r-- | library/go/core/buildinfo/test/main.go | 2 | ||||
-rw-r--r-- | library/go/test/yatest/env.go | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/library/cpp/lwtrace/protos/lwtrace.proto b/library/cpp/lwtrace/protos/lwtrace.proto index 0051095719..4702f56c0a 100644 --- a/library/cpp/lwtrace/protos/lwtrace.proto +++ b/library/cpp/lwtrace/protos/lwtrace.proto @@ -5,7 +5,7 @@ syntax = "proto3"; package NLWTrace; -option go_package = "a.yandex-team.ru/library/cpp/lwtrace/protos"; +option go_package = "github.com/ydb-platform/ydb/library/cpp/lwtrace/protos"; message TProbeDesc { string Name = 1; // Use either name+provider diff --git a/library/cpp/unified_agent_client/proto/unified_agent.proto b/library/cpp/unified_agent_client/proto/unified_agent.proto index 68efe35747..9a507afa06 100644 --- a/library/cpp/unified_agent_client/proto/unified_agent.proto +++ b/library/cpp/unified_agent_client/proto/unified_agent.proto @@ -4,7 +4,7 @@ import "google/protobuf/descriptor.proto"; package NUnifiedAgentProto; option java_package = "com.yandex.unified_agent"; -option go_package = "a.yandex-team.ru/library/cpp/unified_agent_client/proto;unifiedagent"; +option go_package = "github.com/ydb-platform/ydb/library/cpp/unified_agent_client/proto;unifiedagent"; extend google.protobuf.FileOptions { bool GenerateYaStyle = 66777; diff --git a/library/go/core/buildinfo/buildinfo.go b/library/go/core/buildinfo/buildinfo.go index 88b7d52c9e..fe6b8286cb 100644 --- a/library/go/core/buildinfo/buildinfo.go +++ b/library/go/core/buildinfo/buildinfo.go @@ -14,7 +14,7 @@ type BuildInfo struct { // // Other info: // Build by: prime - // Top src dir: /home/prime/Code/go/src/a.yandex-team.ru + // Top src dir: /home/prime/Code/go/src/github.com/ydb-platform/ydb // Top build dir: /home/prime/.ya/build/build_root/qbh0/000002 // Hostname: 77.88.18.146-red.dhcp.yndx.net // Host information: diff --git a/library/go/core/buildinfo/test/main.go b/library/go/core/buildinfo/test/main.go index a17ac12749..7b13900295 100644 --- a/library/go/core/buildinfo/test/main.go +++ b/library/go/core/buildinfo/test/main.go @@ -3,7 +3,7 @@ package main import ( "fmt" - "a.yandex-team.ru/library/go/core/buildinfo" + "github.com/ydb-platform/ydb/library/go/core/buildinfo" ) func main() { diff --git a/library/go/test/yatest/env.go b/library/go/test/yatest/env.go index d655e4c6da..fd2bacbc26 100644 --- a/library/go/test/yatest/env.go +++ b/library/go/test/yatest/env.go @@ -149,7 +149,7 @@ func CxxCompilerPath() string { // Warn: if you are using build with system python (-DUSE_SYSTEM_PYTHON=X) beware that some python bundles // are built in a stripped-down form that is needed for building, not running tests. // See comments in the file below to find out which version of python is compatible with tests. -// https://a.yandex-team.ru/arc/trunk/arcadia/build/platform/python/resources.inc +// https://github.com/ydb-platform/ydb/arc/trunk/arcadia/build/platform/python/resources.inc func PythonBinPath() string { lazyInit() verifyContext() |