Patchset ps-36
refactor(sftp): print errors from server to client
Eric Bower
send/sftp/handler.go
+34
-0
send/sftp/sftp.go
+9
-5
refactor(sftp): print errors from server to client
Most clients do not print the error from request server so we need to do it ourselves. reference: https://github.com/pkg/sftp/issues/219#issuecomment-358136231
send/sftp/handler.go
link
+34
-0
+34
-0
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
|
send/sftp/sftp.go
link
+9
-5
+9
-5
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
|