I'm trying to debug a scheduler issue where users are being sent jobs for
apps that are not selected. In doing so, I came across the following in in
the function JOB::get_score:
if (wu_result.infeasible_count) {
score += 1;
}
If the WU is infeasible for any reason, why would the score be increased?
I would think it shouldn't be sent at all. As such, shouldn't the logic be:
if (wu_result.infeasible_count) {
return false;
}
Jon Sonntag
_______________________________________________
boinc_dev mailing list
[email protected]
http://lists.ssl.berkeley.edu/mailman/listinfo/boinc_dev
To unsubscribe, visit the above URL and
(near bottom of page) enter your email address.