Commit 2fcd202d authored by Aaron Jacobs's avatar Aaron Jacobs

NotImplementedFileSystem.FlushFile

parent f285c2a5
......@@ -118,6 +118,12 @@ func (fs *NotImplementedFileSystem) WriteFile(
return nil, fuse.ENOSYS
}
func (fs *NotImplementedFileSystem) FlushFile(
ctx context.Context,
req *fuse.FlushFileRequest) (*fuse.FlushFileResponse, error) {
return nil, fuse.ENOSYS
}
func (fs *NotImplementedFileSystem) ReleaseFileHandle(
ctx context.Context,
req *fuse.ReleaseFileHandleRequest) (*fuse.ReleaseFileHandleResponse, error) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment