mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2024-11-10 06:40:59 +00:00
Merge pull request #32 from s3fs-fuse/sslproblem#23
Retry to send request at CURLE_SSL_CONNECT_ERROR
This commit is contained in:
commit
a4465105f7
@ -1572,6 +1572,11 @@ int S3fsCurl::RequestPerform(void)
|
||||
sleep(2);
|
||||
break;
|
||||
|
||||
case CURLE_SSL_CONNECT_ERROR:
|
||||
DPRN("### CURLE_SSL_CONNECT_ERROR");
|
||||
sleep(2);
|
||||
break;
|
||||
|
||||
case CURLE_SSL_CACERT:
|
||||
// try to locate cert, if successful, then set the
|
||||
// option and continue
|
||||
|
Loading…
Reference in New Issue
Block a user