Repository: helix Updated Branches: refs/heads/master 36ab2a602 -> abfb894e5
[HELIX-739] Remove old comments from TestQuotaBasedScheduling Remove legacy comments that are no longer true to prevent confusion in the future. Changelist: 1. Remove old comments Project: http://git-wip-us.apache.org/repos/asf/helix/repo Commit: http://git-wip-us.apache.org/repos/asf/helix/commit/abfb894e Tree: http://git-wip-us.apache.org/repos/asf/helix/tree/abfb894e Diff: http://git-wip-us.apache.org/repos/asf/helix/diff/abfb894e Branch: refs/heads/master Commit: abfb894e508938ee51c73fb8abcb02f7615386e0 Parents: 36ab2a6 Author: Hunter Lee <[email protected]> Authored: Tue Jul 17 13:39:01 2018 -0700 Committer: Hunter Lee <[email protected]> Committed: Tue Jul 17 15:40:13 2018 -0700 ---------------------------------------------------------------------- .../helix/integration/task/TestQuotaBasedScheduling.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/helix/blob/abfb894e/helix-core/src/test/java/org/apache/helix/integration/task/TestQuotaBasedScheduling.java ---------------------------------------------------------------------- diff --git a/helix-core/src/test/java/org/apache/helix/integration/task/TestQuotaBasedScheduling.java b/helix-core/src/test/java/org/apache/helix/integration/task/TestQuotaBasedScheduling.java index e2da7d1..9b2ec9e 100644 --- a/helix-core/src/test/java/org/apache/helix/integration/task/TestQuotaBasedScheduling.java +++ b/helix-core/src/test/java/org/apache/helix/integration/task/TestQuotaBasedScheduling.java @@ -225,9 +225,9 @@ public class TestQuotaBasedScheduling extends TaskTestBase { ClusterConfig clusterConfig = _manager.getConfigAccessor().getClusterConfig(CLUSTER_NAME); clusterConfig.resetTaskQuotaRatioMap(); clusterConfig.setTaskQuotaRatio(DEFAULT_QUOTA_TYPE, 1); - clusterConfig.setTaskQuotaRatio("A", 10); // Will get 19 threads - clusterConfig.setTaskQuotaRatio("B", 10); // Will get 19 threads - clusterConfig.setTaskQuotaRatio("C", 9); // Will get 1 thread + clusterConfig.setTaskQuotaRatio("A", 10); + clusterConfig.setTaskQuotaRatio("B", 10); + clusterConfig.setTaskQuotaRatio("C", 9); _manager.getConfigAccessor().setClusterConfig(CLUSTER_NAME, clusterConfig); String workflowName = TestHelper.getTestMethodName();
