mirror of
https://github.com/pgsty/minio.git
synced 2026-07-21 21:20:23 +03: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:
+2
-2
@@ -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