Merge branch 'master' into resharding

This commit is contained in:
Alain Jobart 2015-08-11 07:15:12 -07:00
Родитель 365bed21ef 9d08e24be0
Коммит bc0942ec5d
4 изменённых файлов: 20 добавлений и 6 удалений

Просмотреть файл

@ -14,9 +14,6 @@ import (
"github.com/youtube/vitess/go/rpcplus"
"github.com/youtube/vitess/go/rpcwrap/bsonrpc"
"github.com/youtube/vitess/go/vt/vtgate/gorpcvtgateservice"
// import the gorpc client, it will register itself
_ "github.com/youtube/vitess/go/vt/vtgate/gorpcvtgateconn"
)
// TestGoRPCGoClient tests the go client using goRPC

Просмотреть файл

@ -0,0 +1,10 @@
// Copyright 2015 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package gorpcclienttest
import (
// import the gorpc client, it will register itself
_ "github.com/youtube/vitess/go/vt/vtgate/gorpcvtgateconn"
)

Просмотреть файл

@ -13,9 +13,6 @@ import (
"github.com/youtube/vitess/go/cmd/vtgateclienttest/goclienttest"
"github.com/youtube/vitess/go/cmd/vtgateclienttest/services"
"github.com/youtube/vitess/go/vt/vtgate/grpcvtgateservice"
// import the grpc client, it will register itself
_ "github.com/youtube/vitess/go/vt/vtgate/grpcvtgateconn"
)
// TestGRPCGoClient tests the go client using gRPC

Просмотреть файл

@ -0,0 +1,10 @@
// Copyright 2015 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package grpcclienttest
import (
// import the grpc client, it will register itself
_ "github.com/youtube/vitess/go/vt/vtgate/grpcvtgateconn"
)