summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@gmail.com>2022-08-03 16:31:41 +0200
committerJon Bratseth <bratseth@gmail.com>2022-08-03 16:31:41 +0200
commit6508f928de7713900dfce6c637657109e30bfbdd (patch)
treeab964ce534b1f5b48d8f302022247cd2eb8a0afb
parent972b5932c876988a07ad4ffe7f5d34234337f851 (diff)
Remove println
-rw-r--r--node-repository/src/main/java/com/yahoo/vespa/hosted/provision/autoscale/Autoscaler.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/node-repository/src/main/java/com/yahoo/vespa/hosted/provision/autoscale/Autoscaler.java b/node-repository/src/main/java/com/yahoo/vespa/hosted/provision/autoscale/Autoscaler.java
index 6f6f869a1c0..ac072639cfe 100644
--- a/node-repository/src/main/java/com/yahoo/vespa/hosted/provision/autoscale/Autoscaler.java
+++ b/node-repository/src/main/java/com/yahoo/vespa/hosted/provision/autoscale/Autoscaler.java
@@ -95,8 +95,6 @@ public class Autoscaler {
allocationOptimizer.findBestAllocation(target, currentAllocation, clusterModel, limits);
if (bestAllocation.isEmpty())
return Advice.dontScale(Status.insufficient, "No allocations are possible within configured limits");
- System.out.println("Current: " + currentAllocation);
- System.out.println("Best: " + bestAllocation.get());
if (! worthRescaling(currentAllocation.realResources(), bestAllocation.get().realResources())) {
if (bestAllocation.get().fulfilment() < 1)