(logicalPath string, remoteIndex int)
| 274 | } |
| 275 | |
| 276 | func (d *Chunker) joinRemotePathForTarget(logicalPath string, remoteIndex int) string { |
| 277 | target := d.remoteTargets[remoteIndex] |
| 278 | return joinRemotePathWithBase(target.MountPath, logicalPath) |
| 279 | } |
| 280 | |
| 281 | func (d *Chunker) getActualPathForRemote(logicalPath string) (string, error) { |
| 282 | return d.getActualPathForRemoteOnTarget(logicalPath, 0) |
no test coverage detected