Closed milroy closed 3 months ago
Thanks for the quick review @trws! Setting MWP.
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 75.3%. Comparing base (
7f0105f
) to head (f3df3c0
). Report is 119 commits behind head on master.
When diagnosing a recent scheduling problem, the
max-match-iters
count was observed to remain at its default value:This early return can prevent the count from getting updated: https://github.com/flux-framework/flux-sched/blob/7f0105fcbcb3173be4d105d7ffabb6fa633e58f6/resource/traversers/dfu.cpp#L155
This PR fixes the behavior with a
goto
to jump to the end ofschedule
and setperf.tmp_iter_count
.