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-rust.git


The following commit(s) were added to refs/heads/master by this push:
     new bf57b18  Update for action version. (#18)
bf57b18 is described below

commit bf57b187e03262db8f5bc9938737f1b41eb5a07d
Author: rodric rabbah <[email protected]>
AuthorDate: Thu Dec 12 04:30:27 2019 -0800

    Update for action version. (#18)
    
    See https://github.com/apache/openwhisk/pull/4761.
---
 .../scala/runtime/actionContainers/ActionLoopRustBasicTests.scala    | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git 
a/tests/src/test/scala/runtime/actionContainers/ActionLoopRustBasicTests.scala 
b/tests/src/test/scala/runtime/actionContainers/ActionLoopRustBasicTests.scala
index 67f281f..0f6803e 100755
--- 
a/tests/src/test/scala/runtime/actionContainers/ActionLoopRustBasicTests.scala
+++ 
b/tests/src/test/scala/runtime/actionContainers/ActionLoopRustBasicTests.scala
@@ -89,7 +89,9 @@ class ActionLoopRustBasicTests extends BasicActionRunnerTests 
with WskActorSyste
                   |    #[serde(skip_serializing_if = "Option::is_none")]
                   |    namespace: Option<String>,
                   |    #[serde(skip_serializing_if = "Option::is_none")]
-                  |   action_name: Option<String>,
+                  |    action_name: Option<String>,
+                  |    #[serde(skip_serializing_if = "Option::is_none")]
+                  |    action_version: Option<String>,
                   |    #[serde(skip_serializing_if = "Option::is_none")]
                   |    activation_id: Option<String>,
                   |    #[serde(skip_serializing_if = "Option::is_none")]
@@ -101,6 +103,7 @@ class ActionLoopRustBasicTests extends 
BasicActionRunnerTests with WskActorSyste
                   |        api_key: env::var("__OW_API_KEY").ok(),
                   |        namespace: env::var("__OW_NAMESPACE").ok(),
                   |        action_name: env::var("__OW_ACTION_NAME").ok(),
+                  |        action_version: 
env::var("__OW_ACTION_VERSION").ok(),
                   |        activation_id: env::var("__OW_ACTIVATION_ID").ok(),
                   |        deadline: env::var("__OW_DEADLINE").ok(),
                   |    };

Reply via email to