*** empty log message ***

svn path=/trunk/boinc/; revision=2433
This commit is contained in:
Karl Chen 2003-10-10 05:36:09 +00:00
parent b14163531a
commit be5d01dca7
2 changed files with 11 additions and 1 deletions

View File

@ -6650,4 +6650,4 @@ Karl 2003/10/08
crypt.C
sched/
file_upload_handler.C
transitioner.C

View File

@ -143,6 +143,11 @@ void handle_wu(DB_WORKUNIT& wu) {
//
if (nsuccess >= wu.min_quorum && have_result_to_validate) {
wu.need_validate = true;
log_messages.printf(
SchedMessages::NORMAL,
"[WU#%d %s] need_validate:=>true [nsuccess=%d >= min_quorum=%d]\n",
wu.id, wu.name, nsuccess, wu.min_quorum
);
}
// check for WU error conditions
@ -195,6 +200,11 @@ void handle_wu(DB_WORKUNIT& wu) {
}
if (wu.assimilate_state == ASSIMILATE_INIT) {
wu.assimilate_state = ASSIMILATE_READY;
log_messages.printf(
SchedMessages::NORMAL,
"[WU#%d %s] error_mask:%d assimilate_state:INIT=>READY\n",
wu.id, wu.name, wu.error_mask
);
}
} else if (wu.assimilate_state == ASSIMILATE_INIT) {
// If no error, generate new results if needed.