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 2020/01/20 21:22:14 UTC

[openwhisk-client-go] branch master updated: Add updated field on Action struct (#129)

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-client-go.git


The following commit(s) were added to refs/heads/master by this push:
     new 049acfb  Add updated field on Action struct (#129)
049acfb is described below

commit 049acfbd6fe6d26533e6f6e4635aa99e3f78d164
Author: Seonghyun Oh <ad...@upgle.com>
AuthorDate: Tue Jan 21 06:22:08 2020 +0900

    Add updated field on Action struct (#129)
    
    * Add updated field on Action struct
    * Set omitempty on `updated` field
---
 whisk/action.go | 1 +
 1 file changed, 1 insertion(+)

diff --git a/whisk/action.go b/whisk/action.go
index d8fa2ef..9935871 100644
--- a/whisk/action.go
+++ b/whisk/action.go
@@ -41,6 +41,7 @@ type Action struct {
 	Error       string      `json:"error,omitempty"`
 	Code        int         `json:"code,omitempty"`
 	Publish     *bool       `json:"publish,omitempty"`
+	Updated     int64       `json:"updated,omitempty"`
 }
 
 type Exec struct {