From 3928100518f9f105f13b725e0d3cc936e7739a9a Mon Sep 17 00:00:00 2001 From: David Anderson Date: Wed, 16 Feb 2011 19:44:38 +0000 Subject: [PATCH] - client: fix bug in mechanism that defers work request until pending uploads are finished. Due to a typo, this was not being done. svn path=/trunk/boinc/; revision=23047 --- checkin_notes | 8 ++++++++ client/cs_scheduler.cpp | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/checkin_notes b/checkin_notes index af111eaf8e..5a0b283b04 100644 --- a/checkin_notes +++ b/checkin_notes @@ -831,3 +831,11 @@ David 16 Feb 2011 client/ client_types.cpp + +David 16 Feb 2011 + - client: fix bug in mechanism that defers work request until + pending uploads are finished. + Due to a typo, this was not being done. + + client/ + cs_scheduler.cpp diff --git a/client/cs_scheduler.cpp b/client/cs_scheduler.cpp index ad5651cc8b..a5233f84a8 100644 --- a/client/cs_scheduler.cpp +++ b/client/cs_scheduler.cpp @@ -451,8 +451,8 @@ bool CLIENT_STATE::scheduler_rpc_poll() { "[wfd] deferring work fetch; upload active, started %d sec ago", (int)(gstate.now - p->last_upload_start) ); - return false; } + return false; } scheduler_op->init_op_project(p, RPC_REASON_NEED_WORK); return true;