sRPC/client: Properly trim storageRPCPath for actual disk path. (#3749)

Never print internal RPC endpoint paths.
This commit is contained in:
Harshavardhana 2017-02-15 03:47:47 -08:00 committed by GitHub
parent 13c3b9cbcb
commit fb39c7c26b

View file

@ -23,6 +23,7 @@ import (
"net/rpc"
"net/url"
"path"
"strings"
"github.com/minio/minio/pkg/disk"
)
@ -132,20 +133,20 @@ func newStorageRPC(ep *url.URL) (StorageAPI, error) {
// Stringer interface compatible representation of network device.
func (n *networkStorage) String() string {
return n.rpcClient.ServerAddr() + ":" + n.rpcClient.ServiceEndpoint()
// Remove the storage RPC path prefix, internal paths are meaningless.
serviceEndpoint := strings.TrimPrefix(n.rpcClient.ServiceEndpoint(), storageRPCPath)
return n.rpcClient.ServerAddr() + ":" + serviceEndpoint
}
// Init - attempts a login to reconnect.
func (n *networkStorage) Init() error {
err := n.rpcClient.Login()
return toStorageErr(err)
return toStorageErr(n.rpcClient.Login())
}
// Closes the underlying RPC connection.
func (n *networkStorage) Close() (err error) {
func (n *networkStorage) Close() error {
// Close the underlying connection.
err = n.rpcClient.Close()
return toStorageErr(err)
return toStorageErr(n.rpcClient.Close())
}
// DiskInfo - fetch disk information for a remote disk.