mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=10870
This commit is contained in:
parent
dfc5e8e231
commit
40aa87b253
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue