mirror of https://github.com/BOINC/boinc.git
Changed the error message to reflect that this limit is per-CPU not per-host.
svn path=/trunk/boinc/; revision=14984
This commit is contained in:
parent
aa130ff063
commit
699ece5668
|
@ -1277,7 +1277,7 @@ void send_work(SCHEDULER_REQUEST& sreq, SCHEDULER_REPLY& reply) {
|
||||||
reply.set_delay(delay_time);
|
reply.set_delay(delay_time);
|
||||||
}
|
}
|
||||||
if (reply.wreq.cache_size_exceeded) {
|
if (reply.wreq.cache_size_exceeded) {
|
||||||
sprintf(helpful, "(reached per-host limit of %d tasks)",
|
sprintf(helpful, "(reached per-CPU limit of %d tasks)",
|
||||||
config.max_wus_in_progress
|
config.max_wus_in_progress
|
||||||
);
|
);
|
||||||
USER_MESSAGE um(helpful, "high");
|
USER_MESSAGE um(helpful, "high");
|
||||||
|
|
Loading…
Reference in New Issue