mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
filer subscribe: handle rename subscription
This commit is contained in:
parent
eed87791b7
commit
ac22f1dd26
|
@ -153,7 +153,14 @@ func (fs *FilerServer) eachEventNotificationFn(req *filer_pb.SubscribeMetadataRe
|
||||||
}
|
}
|
||||||
|
|
||||||
if !strings.HasPrefix(fullpath, req.PathPrefix) {
|
if !strings.HasPrefix(fullpath, req.PathPrefix) {
|
||||||
return nil
|
if eventNotification.NewParentPath != "" {
|
||||||
|
newFullPath := util.Join(eventNotification.NewParentPath, entryName)
|
||||||
|
if !strings.HasPrefix(newFullPath, req.PathPrefix) {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
message := &filer_pb.SubscribeMetadataResponse{
|
message := &filer_pb.SubscribeMetadataResponse{
|
||||||
|
|
Loading…
Reference in a new issue