Merge pull request #1571 from allencloud/remove-defaultns-from-Client

remove field defaultns from struct Client
This commit is contained in:
Akihiro Suda 2017-09-29 01:06:20 +09:00 committed by GitHub
commit 9f84513b89

View File

@ -101,8 +101,6 @@ func NewWithConn(conn *grpc.ClientConn, opts ...ClientOpt) (*Client, error) {
// using a uniform interface // using a uniform interface
type Client struct { type Client struct {
conn *grpc.ClientConn conn *grpc.ClientConn
defaultns string
runtime string runtime string
} }