(ctx context.Context, name string)
| 130 | } |
| 131 | |
| 132 | func (p *Pool) LookupBranchByName(ctx context.Context, name string) (*branches.Config, error) { |
| 133 | return p.branches.LookupByName(ctx, name) |
| 134 | } |
| 135 | |
| 136 | func (p *Pool) openBranch(ctx context.Context, config *branches.Config) (*Branch, error) { |
| 137 | return OpenBranch(ctx, config, p.engine, p.Path, p) |
no test coverage detected