Skip to content

Commit

Permalink
#2074: Update implementation after resolving conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
thearusable committed Oct 31, 2023
1 parent de6e9f9 commit b3e07a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vt/vrt/collection/balance/offlinelb/offlinelb.cc
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ void OfflineLB::init(objgroup::proxy::Proxy<OfflineLB> in_proxy) {
}

void OfflineLB::runLB(LoadType) {
auto const& distro = theLBDataReader()->getDistro(phase_ + 1);
for (auto&& elm : distro) {
auto const distro = theLBDataReader()->getDistro(phase_ + 1);
for (auto&& elm : *distro) {
migrateObjectTo(elm, theContext()->getNode());
}
theLBDataReader()->clearDistro(phase_ + 1);
Expand Down

0 comments on commit b3e07a4

Please sign in to comment.