Skip to content

Commit

Permalink
Link ADIOS2 issue
Browse files Browse the repository at this point in the history
  • Loading branch information
franzpoeschel committed Oct 4, 2022
1 parent e55df66 commit 32f9fbb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/IO/ADIOS/ADIOS2IOHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2685,9 +2685,11 @@ namespace detail
case adios2::Mode::Append:
#ifdef _WIN32
/*
* On Windows, ADIOS2 Append mode only works with existing
* On Windows, ADIOS2 v2.8. Append mode only works with existing
* files. So, we first check for file existence and switch to
* create mode if it does not exist.
*
* See issue: https://github.com/ornladios/ADIOS2/issues/3358
*/
tempMode = m_impl->checkFile(m_file) ? adios2::Mode::Append
: adios2::Mode::Write;
Expand Down

0 comments on commit 32f9fbb

Please sign in to comment.