markusthoemmes commented on a change in pull request #2531: Share bookkeeping data across controllers URL: https://github.com/apache/incubator-openwhisk/pull/2531#discussion_r138023816
########## File path: core/controller/src/main/scala/whisk/core/entitlement/ActivationThrottler.scala ########## @@ -22,6 +22,9 @@ import whisk.common.TransactionId import whisk.core.entity.Identity import whisk.core.loadBalancer.LoadBalancer +import scala.concurrent.ExecutionContext.Implicits.global Review comment: Please do not use this import in our components at all. It introduces an independent execution context which does not necessarily relate to the EC in that component. You'll need to pass through the actor system's EC. ---------------------------------------------------------------- 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
