From 44b50b2fdfc00f8a2990a84a4808827d11124728 Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Mon, 5 Jul 2021 16:30:41 -0700 Subject: [PATCH] another fix related to 64 bit alignment fix https://github.com/chrislusf/seaweedfs/issues/2177 --- weed/wdclient/exclusive_locks/exclusive_locker.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weed/wdclient/exclusive_locks/exclusive_locker.go b/weed/wdclient/exclusive_locks/exclusive_locker.go index 5b5fa2704..0fa138496 100644 --- a/weed/wdclient/exclusive_locks/exclusive_locker.go +++ b/weed/wdclient/exclusive_locks/exclusive_locker.go @@ -18,10 +18,10 @@ const ( ) type ExclusiveLocker struct { - masterClient *wdclient.MasterClient token int64 lockTsNs int64 isLocking bool + masterClient *wdclient.MasterClient } func NewExclusiveLocker(masterClient *wdclient.MasterClient) *ExclusiveLocker {