You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by ra...@apache.org on 2019/12/03 15:05:40 UTC

[openwhisk-runtime-dotnet] branch rabbah-patch-1 created (now c2d236b)

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

rabbah pushed a change to branch rabbah-patch-1
in repository https://gitbox.apache.org/repos/asf/openwhisk-runtime-dotnet.git.


      at c2d236b  Update for action version.

This branch includes the following new commits:

     new c2d236b  Update for action version.

The 1 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.



[openwhisk-runtime-dotnet] 01/01: Update for action version.

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

rabbah pushed a commit to branch rabbah-patch-1
in repository https://gitbox.apache.org/repos/asf/openwhisk-runtime-dotnet.git

commit c2d236b3cf1549bb01b27fc412cd6d7702347a3c
Author: rodric rabbah <ro...@gmail.com>
AuthorDate: Tue Dec 3 10:05:35 2019 -0500

    Update for action version.
    
    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);