*** empty log message ***

svn path=/trunk/boinc/; revision=9594
This commit is contained in:
David Anderson 2006-03-03 05:57:51 +00:00
parent da3e0cd427
commit 2fcdbddd07
2 changed files with 8 additions and 1 deletions

View File

@ -2542,3 +2542,10 @@ David 2 Mar 2006
parse.C,h
sched/
file_upload_handler.C
David 2 Mar 2006
- core client: when host CPID changes,
delay the resulting scheduler RPCs by 15 seconds
client/
cs_scheduler.C

View File

@ -1129,7 +1129,7 @@ void CLIENT_STATE::generate_new_host_cpid() {
host_info.generate_host_cpid();
for (unsigned int i=0; i<projects.size(); i++) {
projects[i]->sched_rpc_pending = true;
projects[i]->min_rpc_time = 0;
projects[i]->min_rpc_time = now + 15;
}
}