Skip to content

Commit

Permalink
curvefs: fix mds unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
SeanHai committed Apr 12, 2022
1 parent cc8b67a commit 56b2ac2
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 130 deletions.
4 changes: 2 additions & 2 deletions curvefs/src/client/fuse_client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1115,8 +1115,8 @@ CURVEFS_ERROR FuseClient::FastCalAllLayerSumInfo(Inode *inode) {
CURVEFS_ERROR FuseClient::FuseOpGetXattr(fuse_req_t req, fuse_ino_t ino,
const char* name, void* value,
size_t size) {
LOG(INFO) << "FuseOpGetXattr, ino: " << ino
<< ", name: " << name << ", size = " << size;
VLOG(1) << "FuseOpGetXattr, ino: " << ino
<< ", name: " << name << ", size = " << size;
std::shared_ptr<InodeWrapper> inodeWrapper;
CURVEFS_ERROR ret = inodeManager_->GetInode(ino, inodeWrapper);
if (ret != CURVEFS_ERROR::OK) {
Expand Down
Loading

0 comments on commit 56b2ac2

Please sign in to comment.