mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=6864
This commit is contained in:
parent
4710fe1771
commit
666da72e05
|
@ -1108,16 +1108,6 @@ void process_request(
|
|||
|
||||
handle_results(sreq, reply);
|
||||
|
||||
// look at other results. for now just print
|
||||
//
|
||||
for (unsigned int i=0; i<sreq.other_results.size(); i++) {
|
||||
OTHER_RESULT& orp=sreq.other_results[i];
|
||||
log_messages.printf(SCHED_MSG_LOG::DEBUG,
|
||||
"Result already on [HOST#%d]: %s\n",
|
||||
reply.host.id, orp.name.c_str()
|
||||
);
|
||||
}
|
||||
|
||||
if (config.resend_lost_results) {
|
||||
if (resend_lost_work(sreq, reply)) {
|
||||
ok_to_send_work = false;
|
||||
|
|
|
@ -1019,6 +1019,16 @@ bool resend_lost_work(SCHEDULER_REQUEST& sreq, SCHEDULER_REPLY& reply) {
|
|||
char buf[256];
|
||||
bool did_any = false;
|
||||
|
||||
// look at other results. for now just print
|
||||
//
|
||||
for (i=0; i<sreq.other_results.size(); i++) {
|
||||
OTHER_RESULT& orp=sreq.other_results[i];
|
||||
log_messages.printf(SCHED_MSG_LOG::DEBUG,
|
||||
"Result already on [HOST#%d]: %s\n",
|
||||
reply.host.id, orp.name.c_str()
|
||||
);
|
||||
}
|
||||
|
||||
sprintf(buf, " where hostid=%d and server_state=%d ",
|
||||
reply.host.id, RESULT_SERVER_STATE_IN_PROGRESS
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue