*** empty log message ***

svn path=/trunk/boinc/; revision=2858
This commit is contained in:
David Anderson 2004-01-08 00:51:13 +00:00
parent 9d79e148d5
commit 5f842e6eb6
2 changed files with 10 additions and 0 deletions

View File

@ -9020,6 +9020,7 @@ David 7 Jan 2004
- scheduling server: if get invalid hostid,
look up user before creating new host
(otherwise will create a host record with userid 0)
- if get a result that's already been received, ignore it
sched/
handle_request.C

View File

@ -531,6 +531,15 @@ int handle_results(
continue;
}
if (result.received_time) {
log_messages.printf(
SchedMessages::CRITICAL,
"[HOST#%d] [RESULT#%d %s] got result twice\n",
host.id, result.id, result.name
);
continue;
}
if (result.hostid != sreq.hostid) {
log_messages.printf(
SchedMessages::CRITICAL,