diff options
| author | chrislu <chris.lu@gmail.com> | 2023-07-16 11:22:48 -0700 |
|---|---|---|
| committer | chrislu <chris.lu@gmail.com> | 2023-07-16 11:22:48 -0700 |
| commit | 6f588b5b182b1b5ac5e81b49b81ab4e3a2b8187f (patch) | |
| tree | f1ad844eb6b1090ac5441ea81103709bec61bdd2 | |
| parent | df400e6c71d187d9e3b1ab42838e3468945ca7ff (diff) | |
| download | seaweedfs-6f588b5b182b1b5ac5e81b49b81ab4e3a2b8187f.tar.xz seaweedfs-6f588b5b182b1b5ac5e81b49b81ab4e3a2b8187f.zip | |
fix refactoring mistake
fix https://github.com/seaweedfs/seaweedfs/issues/4639
| -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 82b822971..8570faa7a 100644 --- a/weed/filer/filer.go +++ b/weed/filer/filer.go @@ -99,8 +99,8 @@ func (f *Filer) MaybeBootstrapFromPeers(self pb.ServerAddress, existingNodes []* PathPrefix: "/", AdditionalPathPrefixes: nil, DirectoriesToWatch: nil, - StartTsNs: snapshotTime.UnixNano(), - StopTsNs: 0, + StartTsNs: 0, + StopTsNs: snapshotTime.UnixNano(), EventErrorType: pb.FatalOnError, } |
