mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2025-01-08 15:44:11 +00:00
cleanup failing curl handles on retries
This commit is contained in:
parent
0f503ced25
commit
adcf5754ae
@ -1762,7 +1762,9 @@ bool S3fsCurl::DestroyCurlHandle(void)
|
||||
|
||||
S3fsCurl::curl_times.erase(hCurl);
|
||||
S3fsCurl::curl_progress.erase(hCurl);
|
||||
sCurlPool->ReturnHandler(hCurl);
|
||||
if(retry_count == 0){
|
||||
sCurlPool->ReturnHandler(hCurl);
|
||||
}
|
||||
hCurl = NULL;
|
||||
ClearInternalData();
|
||||
|
||||
@ -1872,7 +1874,12 @@ bool S3fsCurl::RemakeHandle(void)
|
||||
partdata.size = b_partdata_size;
|
||||
|
||||
// reset handle
|
||||
curl_easy_cleanup(hCurl);
|
||||
hCurl = curl_easy_init();
|
||||
ResetHandle();
|
||||
// disable ssl cache, so that a new session will be created
|
||||
curl_easy_setopt(hCurl, CURLOPT_SSL_SESSIONID_CACHE, 0);
|
||||
curl_easy_setopt(hCurl, CURLOPT_SHARE, NULL);
|
||||
|
||||
// set options
|
||||
switch(type){
|
||||
|
Loading…
Reference in New Issue
Block a user