This is an automated email from the ASF dual-hosted git repository.

cbickel pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk.git


The following commit(s) were added to refs/heads/master by this push:
     new a183b3e  Reduce invoker health action memory limit to the minimum 
available memory limit. (#4136)
a183b3e is described below

commit a183b3e17daa18625476d31629385e130c5a01ed
Author: Su <sugandha.agrawa...@gmail.com>
AuthorDate: Wed Nov 28 08:08:21 2018 +0100

    Reduce invoker health action memory limit to the minimum available memory 
limit. (#4136)
---
 .../org/apache/openwhisk/core/loadBalancer/InvokerSupervision.scala    | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 
a/core/controller/src/main/scala/org/apache/openwhisk/core/loadBalancer/InvokerSupervision.scala
 
b/core/controller/src/main/scala/org/apache/openwhisk/core/loadBalancer/InvokerSupervision.scala
index 5017ea3..736a6ab 100644
--- 
a/core/controller/src/main/scala/org/apache/openwhisk/core/loadBalancer/InvokerSupervision.scala
+++ 
b/core/controller/src/main/scala/org/apache/openwhisk/core/loadBalancer/InvokerSupervision.scala
@@ -276,7 +276,8 @@ object InvokerPool {
       new WhiskAction(
         namespace = healthActionIdentity.namespace.name.toPath,
         name = EntityName(s"invokerHealthTestAction${i.asString}"),
-        exec = CodeExecAsString(manifest, """function main(params) { return 
params; }""", None))
+        exec = CodeExecAsString(manifest, """function main(params) { return 
params; }""", None),
+        limits = ActionLimits(memory = MemoryLimit(MemoryLimit.minMemory)))
     }
 }
 

Reply via email to