Skip to content

Commit

Permalink
Also ensure all ranks flush in group/variable encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
franzpoeschel committed Jun 7, 2024
1 parent d9c54f7 commit 0a05f10
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Series.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1403,6 +1403,7 @@ void Series::flushGorVBased(
bool flushIOHandler)
{
auto &series = get();

if (access::readOnly(IOHandler()->m_frontendAccess))
{
for (auto it = begin; it != end; ++it)
Expand Down Expand Up @@ -1432,6 +1433,8 @@ void Series::flushGorVBased(
}

// Phase 3
Parameter<Operation::TOUCH> touch;
IOHandler()->enqueue(IOTask(&writable(), touch));
if (flushIOHandler)
{
IOHandler()->flush(flushParams);
Expand Down Expand Up @@ -1510,6 +1513,8 @@ void Series::flushGorVBased(
}

flushAttributes(flushParams);
Parameter<Operation::TOUCH> touch;
IOHandler()->enqueue(IOTask(&writable(), touch));
if (flushIOHandler)
{
IOHandler()->flush(flushParams);
Expand Down

0 comments on commit 0a05f10

Please sign in to comment.