MGR: If get_results RPC takes x seconds, do it no more often than once every (x*10) seconds

svn path=/trunk/boinc/; revision=21607
This commit is contained in:
Charlie Fenton 2010-05-24 10:32:23 +00:00
parent fa1cf386b4
commit 7808990b81
1 changed files with 1 additions and 1 deletions

View File

@ -320,7 +320,7 @@ int AsyncRPC::RPC_Wait(RPC_SELECTOR which_rpc, void *arg1, void *arg2,
} else {
request.rpcType = RPC_TYPE_WAIT_FOR_COMPLETION;
}
request.RPCExecutionTime = 0;
request.RPCExecutionTime = NULL;
retval = m_pDoc->RequestRPC(request, hasPriority);
return retval;
}