markusthoemmes commented on a change in pull request #2477: Move load balancer
data into a separate class
URL:
https://github.com/apache/incubator-openwhisk/pull/2477#discussion_r127673126
##########
File path:
core/controller/src/main/scala/whisk/core/loadBalancer/LoadBalancerService.scala
##########
@@ -99,7 +99,9 @@ class LoadBalancerService(
private val blackboxFraction: Double = Math.max(0.0, Math.min(1.0,
config.controllerBlackboxFraction))
logging.info(this, s"blackboxFraction = $blackboxFraction")
- override def getActiveNamespaceActivationCounts: Map[UUID, Int] =
activationByNamespaceId.toMap mapValues { _.size }
+ val loadBalancerData = new LoadBalancerData()
Review comment:
should be `private`.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services