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/01/22 09:27:45 UTC

[GitHub] upgle opened a new issue #4228: user can't know when entity was updated

upgle opened a new issue #4228: user can't know when entity was updated
URL: https://github.com/apache/incubator-openwhisk/issues/4228
 
 
   
   The following CLI command will allow a user to get entity information, but not know when the entity was updated.
   
   ```
   > wsk action get /seonghyun/hello
   > wsk package get /seonghyun/package
   ```
   
   A document for entities contains a updated date, so we can provide it.
   How about adding the updated date in the API response?
   
   ```
   {
       "namespace": "seonghyun",
       "name": "hello",
       "version": "0.0.18",
       "updated": 1534995596948   <- let's add this line
       "exec": {
           "kind": "nodejs:6",
           "binary": false
       }
   }
   ```
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on 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