Skip to content

Commit 13de375

Browse files
committed
Add Windows CI workaround
1 parent b46c770 commit 13de375

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/IO/ADIOS/ADIOS2IOHandler.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2206,7 +2206,9 @@ namespace detail
22062206
: m_file(impl.fullPath(std::move(file)))
22072207
, m_IOName(std::to_string(impl.nameCounter++))
22082208
, m_ADIOS(impl.m_ADIOS)
2209-
, m_IO(impl.m_ADIOS.DeclareIO(m_IOName))
2209+
// Need this prefix since in some situation there seems to be trouble
2210+
// with number-only IO names
2211+
, m_IO(impl.m_ADIOS.DeclareIO("IO_" + m_IOName))
22102212
, m_mode(impl.adios2AccessMode(m_file))
22112213
, m_impl(&impl)
22122214
, m_engineType(impl.m_engineType)

0 commit comments

Comments
 (0)