Make sure there are true pending staged work items as well in failover only mode.
diff --git a/cgminer.c b/cgminer.c
index 057552a..137dfc2 100644
--- a/cgminer.c
+++ b/cgminer.c
@@ -3827,7 +3827,7 @@ bool queue_request(struct thr_info *thr, bool needed)
mutex_unlock(stgd_lock);
if (opt_fail_only) {
- if (pps >= maxq) {
+ if (pps >= maxq && ps) {
ret = true;
goto out;
}