We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96dda7e commit 6e15ad6Copy full SHA for 6e15ad6
ucm/store/nfsstore/cc/domain/trans/directstorage_queue.cc
@@ -89,7 +89,7 @@ Status DirectStorageQueue::S2D(Task::Shard& shard, const Device& device) {
89
[&path](int& newFd) -> Status {
90
newFd = open(path.c_str(), O_RDONLY | O_DIRECT, 0644);
91
if (newFd < 0) {
92
- UC_ERROR("Failed to open file {} for reading: {}", path, strerror(errno));
+ UC_ERROR("Failed to open file {} for read: {}", path, strerror(errno));
93
return Status::Error();
94
}
95
return Status::OK();
0 commit comments