*** empty log message ***

svn path=/trunk/boinc/; revision=10870
This commit is contained in:
David Anderson 2006-08-08 21:46:00 +00:00
parent dfc5e8e231
commit 40aa87b253
2 changed files with 12 additions and 0 deletions

View File

@ -8551,3 +8551,11 @@ David 8 Aug 2006
html/
inc/
forum_email.inc
David 8 Aug 2006
- don't send <outage> elements in scheduler request.
Too much text, and I don't think schedulers will ever
need this level of detail (longest outage probably sufficient)
client/
time_stats.C

View File

@ -172,6 +172,9 @@ int TIME_STATS::write(MIOFILE& out, bool to_server) {
last_update
);
}
#if 0
// too much text. Maybe just send the longest outage?
//
if (outages.size()) {
out.printf(" <outages>\n");
unsigned int i;
@ -189,6 +192,7 @@ int TIME_STATS::write(MIOFILE& out, bool to_server) {
}
out.printf(" </outages>\n");
}
#endif
out.printf("</time_stats>\n");
return 0;
}