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-runtime-dotnet.git


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

commit 0eb341f1d6ba08d1710482b8e017d0d9196b4019
Author: rodric rabbah <[email protected]>
AuthorDate: Tue Dec 10 06:47:33 2019 -0800

    Update for action version. (#27)
    
    See https://github.com/apache/openwhisk/pull/4761.
---
 tests/dotnetshared/Environment.cs | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tests/dotnetshared/Environment.cs 
b/tests/dotnetshared/Environment.cs
index d3a1988..cd68d2a 100644
--- a/tests/dotnetshared/Environment.cs
+++ b/tests/dotnetshared/Environment.cs
@@ -28,6 +28,7 @@ namespace Apache.OpenWhisk.Tests.Dotnet
             message.Add("api_key", new 
JValue(System.Environment.GetEnvironmentVariable("__OW_API_KEY")));
             message.Add("namespace", new 
JValue(System.Environment.GetEnvironmentVariable("__OW_NAMESPACE")));
             message.Add("action_name", new 
JValue(System.Environment.GetEnvironmentVariable("__OW_ACTION_NAME")));
+            message.Add("action_version", new 
JValue(System.Environment.GetEnvironmentVariable("__OW_ACTION_VERSION")));
             message.Add("activation_id", new 
JValue(System.Environment.GetEnvironmentVariable("__OW_ACTIVATION_ID")));
             message.Add("deadline", new 
JValue(System.Environment.GetEnvironmentVariable("__OW_DEADLINE")));
             return (message);

Reply via email to