mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=2858
This commit is contained in:
parent
9d79e148d5
commit
5f842e6eb6
|
@ -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
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue