passing ctx for metadata logging

This commit is contained in:
Chris Lu
2020-06-28 14:34:51 -07:00
parent 12f6b683fc
commit df75b5c98d
4 changed files with 8 additions and 8 deletions

View File

@@ -220,7 +220,7 @@ func (fs *FilerServer) UpdateEntry(ctx context.Context, req *filer_pb.UpdateEntr
glog.V(3).Infof("UpdateEntry %s: %v", filepath.Join(req.Directory, req.Entry.Name), err)
}
fs.filer.NotifyUpdateEvent(entry, newEntry, true)
fs.filer.NotifyUpdateEvent(ctx, entry, newEntry, true)
return &filer_pb.UpdateEntryResponse{}, err
}