mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=2023
This commit is contained in:
parent
9576e59e40
commit
08b03643f4
|
@ -98,7 +98,14 @@ int update_teams() {
|
|||
|
||||
while (!team.enumerate()) {
|
||||
retval = get_team_credit(team);
|
||||
if (retval) return retval;
|
||||
if (retval) {
|
||||
log_messages.printf(
|
||||
SchedMessages::CRITICAL,
|
||||
"update_teams: get_team_credit([TEAM#%d]) failed: %d\n",
|
||||
team.id,
|
||||
retval);
|
||||
return retval;
|
||||
}
|
||||
|
||||
// update the team record
|
||||
retval = team.update();
|
||||
|
|
Loading…
Reference in New Issue