We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6b8769 commit 5b0a9f7Copy full SHA for 5b0a9f7
src/vt/vrt/collection/balance/baselb/baselb.cc
@@ -143,12 +143,9 @@ std::shared_ptr<const balance::Reassignment> BaseLB::normalizeReassignments() {
143
auto const new_node = std::get<1>(transfer);
144
auto const current_node = obj_id.curr_node;
145
146
- if (not obj_id.isMigratable()) {
147
- vt_debug_print(
148
- verbose, lb, "BaseLB::normalizeReassignments(): obj not migratable\n"
149
- );
150
- continue;
151
- }
+ vtAbortIf(
+ not obj_id.isMigratable(), "Transfering object that is not migratable"
+ );
152
if (current_node == new_node) {
153
vt_debug_print(
154
verbose, lb, "BaseLB::normalizeReassignments(): self migration\n"
0 commit comments