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:
Janus B. Kristensen 2008-03-30 08:05:45 +00:00
parent aa130ff063
commit 699ece5668
1 changed files with 1 additions and 1 deletions

View File

@ -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");