提交 39b75757 编写于 作者: J João Sousa

Minor fix

上级 4a509d42
无法预览此类型文件
......@@ -286,10 +286,10 @@ public class ClientsManager {
ignore = true;
} else if (pendingReqs <= this.controller.getStaticConf().getPreferredPendigReqs() &&
pendingDecs <= this.controller.getStaticConf().getPreferredPendigDecs() &&
pendingReps <= this.controller.getStaticConf().getPreferredPendigReps() &&
usedMemory <= this.controller.getStaticConf().getPreferredUsedMemory())
} else if ((this.controller.getStaticConf().getMaxPendigReqs() < 0 || pendingReqs <= this.controller.getStaticConf().getPreferredPendigReqs()) &&
(this.controller.getStaticConf().getMaxPendigDecs() < 0 || pendingDecs <= this.controller.getStaticConf().getPreferredPendigDecs()) &&
(this.controller.getStaticConf().getMaxPendigReps() < 0 || pendingReps <= this.controller.getStaticConf().getPreferredPendigReps()) &&
(this.controller.getStaticConf().getMaxUsedMemory() < 0 || usedMemory <= this.controller.getStaticConf().getPreferredUsedMemory()))
{
ignore = false;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册