Fix write hangs on PG epoch update - always set pg.history_changed to true

rdma-v2
Vitaliy Filippov 2023-01-25 01:30:15 +03:00
parent 749c837045
commit 0385b2f9e8
1 changed files with 1 additions and 1 deletions

View File

@ -168,8 +168,8 @@ resume_3:
auto it = std::lower_bound(pg.target_history.begin(), pg.target_history.end(), history_set);
if (it == pg.target_history.end() || *it != history_set)
pg.target_history.insert(it, history_set);
pg.history_changed = true;
}
pg.history_changed = true;
report_pg_states();
resume_10:
if (pg.epoch > pg.reported_epoch)