mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=4132
This commit is contained in:
parent
c1b1b1435e
commit
8f82cea5fd
|
@ -16820,3 +16820,10 @@ David 31 Aug 2004
|
|||
main.C
|
||||
sched_send.C
|
||||
sched_shmem.h
|
||||
|
||||
Jeff 31 Aug 2004
|
||||
- limit workunit enumeration in the assimilator to 1000.
|
||||
|
||||
sched/
|
||||
assimilator.C
|
||||
|
||||
|
|
|
@ -57,7 +57,7 @@ bool do_pass(APP& app) {
|
|||
|
||||
check_stop_daemons();
|
||||
|
||||
sprintf(buf, "where appid=%d and assimilate_state=%d", app.id, ASSIMILATE_READY);
|
||||
sprintf(buf, "where appid=%d and assimilate_state=%d limit 1000", app.id, ASSIMILATE_READY);
|
||||
while (!wu.enumerate(buf)) {
|
||||
vector<RESULT> results; // must be inside while()!
|
||||
did_something = true;
|
||||
|
|
Loading…
Reference in New Issue