mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2025-04-03 23:21:51 +00:00
Changes as per review comments
This commit is contained in:
parent
92a4034c5e
commit
ad5349a488
@ -2064,7 +2064,6 @@ int S3fsCurl::RequestPerform(void)
|
|||||||
}
|
}
|
||||||
if(500 <= LastResponseCode){
|
if(500 <= LastResponseCode){
|
||||||
S3FS_PRN_ERR("HTTP response code = %ld Body Text: %s", LastResponseCode, (bodydata ? bodydata->str() : ""));
|
S3FS_PRN_ERR("HTTP response code = %ld Body Text: %s", LastResponseCode, (bodydata ? bodydata->str() : ""));
|
||||||
S3FS_PRN_INFO3("HTTP response code %ld", LastResponseCode);
|
|
||||||
sleep(4);
|
sleep(4);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -2073,26 +2072,19 @@ int S3fsCurl::RequestPerform(void)
|
|||||||
switch(LastResponseCode){
|
switch(LastResponseCode){
|
||||||
case 400:
|
case 400:
|
||||||
S3FS_PRN_ERR("HTTP response code %ld Body Text: %s", LastResponseCode, (bodydata ? bodydata->str() : ""));
|
S3FS_PRN_ERR("HTTP response code %ld Body Text: %s", LastResponseCode, (bodydata ? bodydata->str() : ""));
|
||||||
S3FS_PRN_INFO3("HTTP response code 400 was returned, returning EIO.");
|
|
||||||
S3FS_PRN_DBG("Body Text: %s", (bodydata ? bodydata->str() : ""));
|
|
||||||
return -EIO;
|
return -EIO;
|
||||||
|
|
||||||
case 403:
|
case 403:
|
||||||
S3FS_PRN_ERR("HTTP response code %ld Body Text: %s", LastResponseCode, (bodydata ? bodydata->str() : ""));
|
S3FS_PRN_ERR("HTTP response code %ld Body Text: %s", LastResponseCode, (bodydata ? bodydata->str() : ""));
|
||||||
S3FS_PRN_INFO3("HTTP response code 403 was returned, returning EPERM");
|
|
||||||
S3FS_PRN_DBG("Body Text: %s", (bodydata ? bodydata->str() : ""));
|
|
||||||
return -EPERM;
|
return -EPERM;
|
||||||
|
|
||||||
case 404:
|
case 404:
|
||||||
S3FS_PRN_ERR("HTTP response code %ld Body Text: %s", LastResponseCode, (bodydata ? bodydata->str() : ""));
|
|
||||||
S3FS_PRN_INFO3("HTTP response code 404 was returned, returning ENOENT");
|
S3FS_PRN_INFO3("HTTP response code 404 was returned, returning ENOENT");
|
||||||
S3FS_PRN_DBG("Body Text: %s", (bodydata ? bodydata->str() : ""));
|
S3FS_PRN_DBG("Body Text: %s", (bodydata ? bodydata->str() : ""));
|
||||||
return -ENOENT;
|
return -ENOENT;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
S3FS_PRN_ERR("HTTP response code %ld Body Text: %s", LastResponseCode, (bodydata ? bodydata->str() : ""));
|
S3FS_PRN_ERR("HTTP response code %ld Body Text: %s", LastResponseCode, (bodydata ? bodydata->str() : ""));
|
||||||
S3FS_PRN_INFO3("HTTP response code = %ld, returning EIO", LastResponseCode);
|
|
||||||
S3FS_PRN_DBG("Body Text: %s", (bodydata ? bodydata->str() : ""));
|
|
||||||
return -EIO;
|
return -EIO;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user