This is an automated email from the ASF dual-hosted git repository.
tysonnorris 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 5da62ed use "nodejs:default" for health action (instead of "nodejs:6") (#4054)
5da62ed is described below
commit 5da62ed7616037604447ce647c669fe51698e0f5
Author: tysonnorris <tysonnorris@gmail.com>
AuthorDate: Fri Oct 5 15:47:10 2018 -0700
use "nodejs:default" for health action (instead of "nodejs:6") (#4054)
---
.../src/main/scala/whisk/core/loadBalancer/InvokerSupervision.scala | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/core/controller/src/main/scala/whisk/core/loadBalancer/InvokerSupervision.scala
b/core/controller/src/main/scala/whisk/core/loadBalancer/InvokerSupervision.scala
index 98e6cd4..7e76f01 100644
--- a/core/controller/src/main/scala/whisk/core/loadBalancer/InvokerSupervision.scala
+++ b/core/controller/src/main/scala/whisk/core/loadBalancer/InvokerSupervision.scala
@@ -269,7 +269,7 @@ object InvokerPool {
/** An action to use for monitoring invoker health. */
def healthAction(i: ControllerInstanceId): Option[WhiskAction] =
- ExecManifest.runtimesManifest.resolveDefaultRuntime("nodejs:6").map { manifest =>
+ ExecManifest.runtimesManifest.resolveDefaultRuntime("nodejs:default").map { manifest
=>
new WhiskAction(
namespace = healthActionIdentity.namespace.name.toPath,
name = EntityName(s"invokerHealthTestAction${i.asString}"),
|