mirror of
https://github.com/minio/minio.git
synced 2025-11-20 18:06:10 -05:00
rpc/lock: Make sure to capitalize for proper marshalling. (#3544)
Distributed setup stopped working for certain types of operations `6d10f4c19af6861e4de1b22ac20a3e5136f69d67` This is a regression. Fixes #3543
This commit is contained in:
@@ -103,9 +103,9 @@ type LoginRPCReply struct {
|
||||
// LockArgs represents arguments for any authenticated lock RPC call.
|
||||
type LockArgs struct {
|
||||
AuthRPCArgs
|
||||
dsyncLockArgs dsync.LockArgs
|
||||
LockArgs dsync.LockArgs
|
||||
}
|
||||
|
||||
func newLockArgs(args dsync.LockArgs) LockArgs {
|
||||
return LockArgs{dsyncLockArgs: args}
|
||||
return LockArgs{LockArgs: args}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user