You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@openwhisk.apache.org by GitBox <gi...@apache.org> on 2019/09/26 08:27:25 UTC

[GitHub] [openwhisk-client-go] upgle opened a new pull request #129: Add updated field on Action struct

upgle opened a new pull request #129: Add updated field on Action struct
URL: https://github.com/apache/openwhisk-client-go/pull/129
 
 
   ## Description
   
   It is related to this PR https://github.com/apache/openwhisk/pull/4646
   
   Since there is no `updated` field in the Action structure, `wsk action get ` command doesn't show a `updated` value even though the API passed it.
   
   I think this PR can be merged after the openwhisk-core PR is merged
   
   ## TEST
   
   ```
   Response body received:
   {"annotations":[],"exec":{"kind":"nodejs:10","binary":false},"limits":{"concurrency":1,"logs":10,"memory":128,"timeout":60000},"name":"invokerHealthTestAction0","namespace":"whisk.system","parameters":[],"publish":false,"updated":1569485478259,"version":"0.0.1"}
   ok: got action invokerHealthTestAction0
   {
       "namespace": "whisk.system",
       "name": "invokerHealthTestAction0",
       "version": "0.0.1",
       "exec": {
           "kind": "nodejs:10",
           "binary": false
       },
       "limits": {
           "timeout": 60000,
           "memory": 128,
           "logs": 10,
           "concurrency": 1
       },
       "publish": false,
       "updated": 1569485478259
   }
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services