mirror of
https://github.com/rclone/rclone.git
synced 2025-05-31 00:05:54 +08:00
fshttp: add --expect-continue-timeout default 1s - fixes #3835
Before this change the expect/continue timeout was set to --conntimeout which was 60s by default which is too long to wait. This was noticed when using s3 with a proxy which apparently didn't support expect / continue properly. Set --expect-continue-timeout 0 to disable expect/continue.
This commit is contained in:
@ -539,6 +539,19 @@ Do a trial run with no permanent changes. Use this to see what rclone
|
||||
would do without actually doing it. Useful when setting up the `sync`
|
||||
command which deletes files in the destination.
|
||||
|
||||
### --expect-continue-timeout=TIME ###
|
||||
|
||||
This specifies the amount of time to wait for a server's first
|
||||
response headers after fully writing the request headers if the
|
||||
request has an "Expect: 100-continue" header. Not all backends support
|
||||
using this.
|
||||
|
||||
Zero means no timeout and causes the body to be sent immediately,
|
||||
without waiting for the server to approve. This time does not include
|
||||
the time to send the request header.
|
||||
|
||||
The default is `1s`. Set to 0 to disable.
|
||||
|
||||
### --ignore-case-sync ###
|
||||
|
||||
Using this option will cause rclone to ignore the case of the files
|
||||
|
Reference in New Issue
Block a user