mirror of
https://github.com/minio/minio.git
synced 2024-12-24 06:05:55 -05:00
sRPC/client: Properly trim storageRPCPath for actual disk path. (#3749)
Never print internal RPC endpoint paths.
This commit is contained in:
parent
13c3b9cbcb
commit
fb39c7c26b
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user