diff options
| author | chrislu <chris.lu@gmail.com> | 2022-09-01 09:02:44 -0700 |
|---|---|---|
| committer | chrislu <chris.lu@gmail.com> | 2022-09-01 09:02:44 -0700 |
| commit | 10efdc7aab868ec147cae579bd6e57f38083d1cf (patch) | |
| tree | b41696630a02c5077bbda6763dc42c872acf1d73 | |
| parent | 803ca3c9589ce11d1799ded47bce25c58f179d85 (diff) | |
| download | seaweedfs-10efdc7aab868ec147cae579bd6e57f38083d1cf.tar.xz seaweedfs-10efdc7aab868ec147cae579bd6e57f38083d1cf.zip | |
align memory
| -rw-r--r-- | weed/filer/filer.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/weed/filer/filer.go b/weed/filer/filer.go index fe5fe289a..ae5bc69bc 100644 --- a/weed/filer/filer.go +++ b/weed/filer/filer.go @@ -32,6 +32,8 @@ var ( ) type Filer struct { + UniqueFilerId int32 + UniqueFilerEpoch int32 Store VirtualFilerStore MasterClient *wdclient.MasterClient fileIdDeletionQueue *util.UnboundedQueue @@ -45,8 +47,6 @@ type Filer struct { Signature int32 FilerConf *FilerConf RemoteStorage *FilerRemoteStorage - UniqueFilerId int32 - UniqueFilerEpoch int32 } func NewFiler(masters map[string]pb.ServerAddress, grpcDialOption grpc.DialOption, filerHost pb.ServerAddress, |
