This is an automated email from the ASF dual-hosted git repository.
rabbah pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openwhisk-runtime-java.git
The following commit(s) were added to refs/heads/master by this push:
new 279992d Update for action version. (#104)
279992d is described below
commit 279992db3b6c8f40c3f2ef1ec49b0d5bc62f9fec
Author: rodric rabbah <[email protected]>
AuthorDate: Thu Dec 12 06:08:39 2019 -0800
Update for action version. (#104)
See https://github.com/apache/openwhisk/pull/4761.
---
tests/src/test/scala/actionContainers/JavaActionContainerTests.scala | 1 +
1 file changed, 1 insertion(+)
diff --git
a/tests/src/test/scala/actionContainers/JavaActionContainerTests.scala
b/tests/src/test/scala/actionContainers/JavaActionContainerTests.scala
index 052847c..357885e 100644
--- a/tests/src/test/scala/actionContainers/JavaActionContainerTests.scala
+++ b/tests/src/test/scala/actionContainers/JavaActionContainerTests.scala
@@ -67,6 +67,7 @@ class JavaActionContainerTests extends BasicActionRunnerTests
with WskActorSyste
| response.addProperty("api_key",
System.getenv("__OW_API_KEY"));
| response.addProperty("namespace",
System.getenv("__OW_NAMESPACE"));
| response.addProperty("action_name",
System.getenv("__OW_ACTION_NAME"));
+ | response.addProperty("action_version",
System.getenv("__OW_ACTION_VERSION"));
| response.addProperty("activation_id",
System.getenv("__OW_ACTIVATION_ID"));
| response.addProperty("deadline",
System.getenv("__OW_DEADLINE"));
| return response;