Browse Source

another fix related to 64 bit alignment

fix https://github.com/chrislusf/seaweedfs/issues/2177
pull/2211/head
Chris Lu 4 years ago
parent
commit
44b50b2fdf
  1. 2
      weed/wdclient/exclusive_locks/exclusive_locker.go

2
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 {

Loading…
Cancel
Save