You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by dg...@apache.org on 2021/05/18 00:39:42 UTC

[openwhisk] branch master updated (3802374 -> 1a0bf9f)

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

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


    from 3802374  [New Scheduler] Implement FunctionPullingContainerPool (#5102)
     new 64cd964  deprecate nodejs:10 kind
     new bb7192e  prefetch openwhisk/example to avoid timeout during test execution
     new 1a0bf9f  increase default totalWait when getting an activation

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 ansible/files/runtimes.json                      | 2 +-
 tests/src/test/scala/common/WskTestHelpers.scala | 4 ++--
 tools/travis/runStandaloneTests.sh               | 1 +
 3 files changed, 4 insertions(+), 3 deletions(-)

[openwhisk] 03/03: increase default totalWait when getting an activation

Posted by dg...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 1a0bf9fe027665b839d11f81b9ee7afe11a67ad3
Author: David Grove <gr...@us.ibm.com>
AuthorDate: Mon May 17 18:22:06 2021 -0400

    increase default totalWait when getting an activation
---
 tests/src/test/scala/common/WskTestHelpers.scala | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/src/test/scala/common/WskTestHelpers.scala b/tests/src/test/scala/common/WskTestHelpers.scala
index aec41dc..e8d216b 100644
--- a/tests/src/test/scala/common/WskTestHelpers.scala
+++ b/tests/src/test/scala/common/WskTestHelpers.scala
@@ -243,7 +243,7 @@ trait WskTestHelpers extends Matchers {
     run: RunResult,
     initialWait: Duration = 1.second,
     pollPeriod: Duration = 1.second,
-    totalWait: Duration = 60.seconds)(check: ActivationResult => Unit)(implicit wskprops: WskProps): Unit = {
+    totalWait: Duration = 120.seconds)(check: ActivationResult => Unit)(implicit wskprops: WskProps): Unit = {
     val activationId = wsk.extractActivationId(run)
 
     withClue(s"did not find an activation id in '$run'") {
@@ -275,7 +275,7 @@ trait WskTestHelpers extends Matchers {
   }
   def withActivation(wsk: ActivationOperations, activationId: String)(check: ActivationResult => Unit)(
     implicit wskprops: WskProps): Unit = {
-    withActivation(wsk, activationId, 1.second, 1.second, 60.seconds)(check)
+    withActivation(wsk, activationId, 1.second, 1.second, 120.seconds)(check)
   }
 
   /**

[openwhisk] 01/03: deprecate nodejs:10 kind

Posted by dg...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 64cd96438374a5ad0e71582aeaae26490f8cdd22
Author: David Grove <gr...@us.ibm.com>
AuthorDate: Tue May 11 13:57:29 2021 -0400

    deprecate nodejs:10 kind
---
 ansible/files/runtimes.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ansible/files/runtimes.json b/ansible/files/runtimes.json
index d47e653..9045798 100644
--- a/ansible/files/runtimes.json
+++ b/ansible/files/runtimes.json
@@ -22,7 +22,7 @@
                     "name": "action-nodejs-v10",
                     "tag": "nightly"
                 },
-                "deprecated": false,
+                "deprecated": true,
                 "attached": {
                     "attachmentName": "codefile",
                     "attachmentType": "text/plain"

[openwhisk] 02/03: prefetch openwhisk/example to avoid timeout during test execution

Posted by dg...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit bb7192e90a046c5aaad9785fdd4ec6591ab78909
Author: David Grove <gr...@us.ibm.com>
AuthorDate: Mon May 17 16:50:29 2021 -0400

    prefetch openwhisk/example to avoid timeout during test execution
---
 tools/travis/runStandaloneTests.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tools/travis/runStandaloneTests.sh b/tools/travis/runStandaloneTests.sh
index a9527fb..ba10c5b 100755
--- a/tools/travis/runStandaloneTests.sh
+++ b/tools/travis/runStandaloneTests.sh
@@ -47,6 +47,7 @@ kubectl config set-context --current --namespace=default
 # This is required because it is timed out to pull the image during the test.
 docker pull openwhisk/action-nodejs-v14:nightly
 docker pull openwhisk/dockerskeleton:nightly
+docker pull openwhisk/example:nightly
 docker pull openwhisk/apigateway:0.11.0
 
 cd $ROOTDIR