Skip to content

Commit 8110a0d

Browse files
committed
Enable concurrent writes
1 parent 92ba804 commit 8110a0d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

provider/pkg/provider/remote/copyController.go

+5-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,11 @@ func copy(ctx context.Context, input CopyInputs) (CopyOutputs, error) {
117117
}
118118
defer client.Close()
119119

120-
sftp, err := sftp.NewClient(client)
120+
// The docs warns that concurrent writes "require special consideration. A write to a later
121+
/// offset in a file after an error, could end up with a file length longer than what was
122+
// successfully written."
123+
// We don't do subsequent writes to the same file, only a single ReadFrom, so we should be fine.
124+
sftp, err := sftp.NewClient(client, sftp.UseConcurrentWrites(true))
121125
if err != nil {
122126
return CopyOutputs{input}, err
123127
}

0 commit comments

Comments
 (0)