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

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


The following commit(s) were added to refs/heads/master by this push:
     new 521d6c0b9 fix: avoid using nightly version of openwhisk (#9919)
521d6c0b9 is described below

commit 521d6c0b9d648a5c05c5b48f4f63c7026b87d0eb
Author: Abhishek Choudhary <[email protected]>
AuthorDate: Mon Jul 31 14:13:39 2023 +0545

    fix: avoid using nightly version of openwhisk (#9919)
---
 ci/init-plugin-test-service.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ci/init-plugin-test-service.sh b/ci/init-plugin-test-service.sh
index 39feb410c..d670b7fa3 100755
--- a/ci/init-plugin-test-service.sh
+++ b/ci/init-plugin-test-service.sh
@@ -22,8 +22,8 @@ after() {
     docker exec -i apache-apisix_kafka-server2_1 
/opt/bitnami/kafka/bin/kafka-topics.sh --create --zookeeper 
zookeeper-server2:2181 --replication-factor 1 --partitions 1 --topic test4
 
     # prepare openwhisk env
-    docker pull openwhisk/action-nodejs-v14:nightly
-    docker run --rm -d --name openwhisk -p 3233:3233 -p 3232:3232 -v 
/var/run/docker.sock:/var/run/docker.sock openwhisk/standalone:nightly
+    docker pull openwhisk/action-nodejs-v14:1.20.0
+    docker run --rm -d --name openwhisk -p 3233:3233 -p 3232:3232 -v 
/var/run/docker.sock:/var/run/docker.sock openwhisk/standalone:1.0.0
     docker exec -i openwhisk waitready
     docker exec -i openwhisk bash -c "wsk package create pkg"
     docker exec -i openwhisk bash -c "wsk action update /guest/pkg/testpkg 
<(echo 'function main(args){return {\"hello\": \"world\"}}') --kind nodejs:14"

Reply via email to