mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2024-11-10 23:00:57 +00:00
Merge pull request #1114 from gaul/flush/return-value
Consume return value from FdEntity::Flush
This commit is contained in:
commit
14d3e12103
@ -1573,7 +1573,10 @@ static int s3fs_rename(const char* _from, const char* _to)
|
|||||||
// flush pending writes if file is open
|
// flush pending writes if file is open
|
||||||
FdEntity *entity = FdManager::get()->ExistOpen(from);
|
FdEntity *entity = FdManager::get()->ExistOpen(from);
|
||||||
if(entity != NULL){
|
if(entity != NULL){
|
||||||
entity->Flush(true);
|
if(0 != (result = entity->Flush(true))){
|
||||||
|
S3FS_PRN_ERR("could not upload file(%s): result=%d", to, result);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
StatCache::getStatCacheData()->DelStat(from);
|
StatCache::getStatCacheData()->DelStat(from);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user