bug fix
Signed-off-by: starainrt <i@b612.me>
This commit is contained in:
parent
be040542bb
commit
bab26a32ba
2
sftp.go
2
sftp.go
@ -33,7 +33,7 @@ func SftpTransferOut(localFilePath, remotePath string, sftpClient *sftp.Client)
|
|||||||
}
|
}
|
||||||
defer dstFile.Close()
|
defer dstFile.Close()
|
||||||
for {
|
for {
|
||||||
buf := make([]byte, 1024)
|
buf := make([]byte, 1048576)
|
||||||
n, err := srcFile.Read(buf)
|
n, err := srcFile.Read(buf)
|
||||||
dstFile.Write(buf[:n])
|
dstFile.Write(buf[:n])
|
||||||
if err == io.EOF {
|
if err == io.EOF {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user