You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by st...@apache.org on 2023/08/17 00:48:33 UTC

[openwhisk] branch master updated: Update the nodejs action kind (#5434)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 20f7d98fd Update the nodejs action kind (#5434)
20f7d98fd is described below

commit 20f7d98fdfba275bc3e5c88be0b7cdec956df2aa
Author: Dominic Kim <st...@apache.org>
AuthorDate: Thu Aug 17 09:48:27 2023 +0900

    Update the nodejs action kind (#5434)
---
 .../core/containerpool/v2/test/FunctionPullingContainerPoolTests.scala  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/src/test/scala/org/apache/openwhisk/core/containerpool/v2/test/FunctionPullingContainerPoolTests.scala b/tests/src/test/scala/org/apache/openwhisk/core/containerpool/v2/test/FunctionPullingContainerPoolTests.scala
index e1da77e63..1aa85ad9e 100644
--- a/tests/src/test/scala/org/apache/openwhisk/core/containerpool/v2/test/FunctionPullingContainerPoolTests.scala
+++ b/tests/src/test/scala/org/apache/openwhisk/core/containerpool/v2/test/FunctionPullingContainerPoolTests.scala
@@ -99,7 +99,7 @@ class FunctionPullingContainerPoolTests
   // those for the behavior testing here, as none of the contents will really
   // reach a container anyway. We merely assert that passing and extraction of
   // the values is done properly.
-  private val actionKind = "nodejs:8"
+  private val actionKind = "nodejs:20"
   private val exec = CodeExecAsString(RuntimeManifest(actionKind, ImageName("testImage")), "testCode", None)
   private val memoryLimit = MemoryLimit.STD_MEMORY.toMB.MB
   private val whiskAction = WhiskAction(EntityPath("actionSpace"), EntityName("actionName"), exec)