Method
CreateLink
(ctx context.Context, op *fuseops.CreateLinkOp)
Source from the content-addressed store, hash-verified
| 86 | } |
| 87 | |
| 88 | func (fs *gatedFileSystem) CreateLink(ctx context.Context, op *fuseops.CreateLinkOp) error { |
| 89 | if err := fs.wait(ctx); err != nil { |
| 90 | return err |
| 91 | } |
| 92 | return fs.next.CreateLink(ctx, op) |
| 93 | } |
| 94 | |
| 95 | func (fs *gatedFileSystem) CreateSymlink(ctx context.Context, op *fuseops.CreateSymlinkOp) error { |
| 96 | if err := fs.wait(ctx); err != nil { |
Callers
nothing calls this directly
Tested by
no test coverage detected