LLNL / UnifyFS

UnifyFS: A file system for burst buffers
Other
99 stars 31 forks source link

Do not assume file must exist after an open call #789

Closed wangvsa closed 1 year ago

wangvsa commented 1 year ago

Fix for issue https://github.com/LLNL/UnifyFS/issues/776 :

unifyfs_fid_open function assumes the file must exist after the open call, it throws an error if it's not. This is not true because a file may be opened without O_CREAT. Fix: changed LOGERR to LOGDBG and modified some related comments.

Types of changes

adammoody commented 1 year ago

Thanks, @wangvsa