Skip to content

Commit

Permalink
Rename IsManifestNotFound to IsFileNotFound (#57)
Browse files Browse the repository at this point in the history
Signed-off-by: sunby <[email protected]>
  • Loading branch information
sunby committed Sep 14, 2023
1 parent c847928 commit 08348ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/include/milvus-storage/common/status.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class Status {

bool IsInternalStateError() const { return code_ == kInternalStateError; }

bool IsManifestNotFound() const { return code_ == kFileNotFound; }
bool IsFileNotFound() const { return code_ == kFileNotFound; }

std::string ToString() const;

Expand Down

0 comments on commit 08348ae

Please sign in to comment.