mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=5736
This commit is contained in:
parent
4aeb37a776
commit
cfa55b2724
|
@ -69,6 +69,13 @@ bool do_pass(APP& app) {
|
|||
while (!wu.enumerate(buf)) {
|
||||
vector<RESULT> results; // must be inside while()!
|
||||
|
||||
if (wu.assimilate_state != ASSIMILATE_READY) {
|
||||
log_messages.printf(SCHED_MSG_LOG::CRITICAL,
|
||||
"[%s] unexpected state=%d\n", wu.name, wu.assimilate_state
|
||||
);
|
||||
continue;
|
||||
}
|
||||
|
||||
// for testing purposes, pretend we did nothing
|
||||
//
|
||||
if (update_db) {
|
||||
|
@ -92,6 +99,7 @@ bool do_pass(APP& app) {
|
|||
log_messages.printf(SCHED_MSG_LOG::CRITICAL,
|
||||
"[%s] handler returned error %d; exiting\n", wu.name, retval
|
||||
);
|
||||
exit(retval);
|
||||
}
|
||||
|
||||
if (update_db) {
|
||||
|
|
Loading…
Reference in New Issue