mirror of https://github.com/minio/minio.git
rpc/client: Add missing rpcTokens for each rpc calls.
This commit is contained in:
parent
83074ed57e
commit
cae5761f16
|
@ -156,7 +156,8 @@ func (n networkStorage) StatVol(volume string) (volInfo VolInfo, err error) {
|
|||
if n.rpcClient == nil {
|
||||
return VolInfo{}, errVolumeBusy
|
||||
}
|
||||
if err = n.rpcClient.Call("Storage.StatVolHandler", volume, &volInfo); err != nil {
|
||||
args := GenericVolArgs{n.rpcToken, volume}
|
||||
if err = n.rpcClient.Call("Storage.StatVolHandler", args, &volInfo); err != nil {
|
||||
return VolInfo{}, toStorageErr(err)
|
||||
}
|
||||
return volInfo, nil
|
||||
|
@ -168,7 +169,8 @@ func (n networkStorage) DeleteVol(volume string) error {
|
|||
return errVolumeBusy
|
||||
}
|
||||
reply := GenericReply{}
|
||||
if err := n.rpcClient.Call("Storage.DeleteVolHandler", volume, &reply); err != nil {
|
||||
args := GenericVolArgs{n.rpcToken, volume}
|
||||
if err := n.rpcClient.Call("Storage.DeleteVolHandler", args, &reply); err != nil {
|
||||
return toStorageErr(err)
|
||||
}
|
||||
return nil
|
||||
|
@ -183,6 +185,7 @@ func (n networkStorage) AppendFile(volume, path string, buffer []byte) (err erro
|
|||
}
|
||||
reply := GenericReply{}
|
||||
if err = n.rpcClient.Call("Storage.AppendFileHandler", AppendFileArgs{
|
||||
Token: n.rpcToken,
|
||||
Vol: volume,
|
||||
Path: path,
|
||||
Buffer: buffer,
|
||||
|
@ -195,6 +198,7 @@ func (n networkStorage) AppendFile(volume, path string, buffer []byte) (err erro
|
|||
// StatFile - get latest Stat information for a file at path.
|
||||
func (n networkStorage) StatFile(volume, path string) (fileInfo FileInfo, err error) {
|
||||
if err = n.rpcClient.Call("Storage.StatFileHandler", StatFileArgs{
|
||||
Token: n.rpcToken,
|
||||
Vol: volume,
|
||||
Path: path,
|
||||
}, &fileInfo); err != nil {
|
||||
|
@ -209,6 +213,7 @@ func (n networkStorage) StatFile(volume, path string) (fileInfo FileInfo, err er
|
|||
// not use this on large files as it would cause server to crash.
|
||||
func (n networkStorage) ReadAll(volume, path string) (buf []byte, err error) {
|
||||
if err = n.rpcClient.Call("Storage.ReadAllHandler", ReadAllArgs{
|
||||
Token: n.rpcToken,
|
||||
Vol: volume,
|
||||
Path: path,
|
||||
}, &buf); err != nil {
|
||||
|
@ -223,6 +228,7 @@ func (n networkStorage) ReadFile(volume string, path string, offset int64, buffe
|
|||
return 0, errVolumeBusy
|
||||
}
|
||||
if err = n.rpcClient.Call("Storage.ReadFileHandler", ReadFileArgs{
|
||||
Token: n.rpcToken,
|
||||
Vol: volume,
|
||||
Path: path,
|
||||
Offset: offset,
|
||||
|
@ -239,6 +245,7 @@ func (n networkStorage) ListDir(volume, path string) (entries []string, err erro
|
|||
return nil, errVolumeBusy
|
||||
}
|
||||
if err = n.rpcClient.Call("Storage.ListDirHandler", ListDirArgs{
|
||||
Token: n.rpcToken,
|
||||
Vol: volume,
|
||||
Path: path,
|
||||
}, &entries); err != nil {
|
||||
|
@ -255,6 +262,7 @@ func (n networkStorage) DeleteFile(volume, path string) (err error) {
|
|||
}
|
||||
reply := GenericReply{}
|
||||
if err = n.rpcClient.Call("Storage.DeleteFileHandler", DeleteFileArgs{
|
||||
Token: n.rpcToken,
|
||||
Vol: volume,
|
||||
Path: path,
|
||||
}, &reply); err != nil {
|
||||
|
@ -270,6 +278,7 @@ func (n networkStorage) RenameFile(srcVolume, srcPath, dstVolume, dstPath string
|
|||
}
|
||||
reply := GenericReply{}
|
||||
if err = n.rpcClient.Call("Storage.RenameFileHandler", RenameFileArgs{
|
||||
Token: n.rpcToken,
|
||||
SrcVol: srcVolume,
|
||||
SrcPath: srcPath,
|
||||
DstVol: dstVolume,
|
||||
|
|
Loading…
Reference in New Issue