From issues-return-40254-archive-asf-public=cust-asf.ponee.io@openwhisk.apache.org Thu Sep 26 08:27:26 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id 793421804BB for ; Thu, 26 Sep 2019 10:27:26 +0200 (CEST) Received: (qmail 52803 invoked by uid 500); 26 Sep 2019 08:27:25 -0000 Mailing-List: contact issues-help@openwhisk.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@openwhisk.apache.org Delivered-To: mailing list issues@openwhisk.apache.org Received: (qmail 52794 invoked by uid 99); 26 Sep 2019 08:27:25 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 26 Sep 2019 08:27:25 +0000 From: GitBox To: issues@openwhisk.apache.org Subject: [GitHub] [openwhisk-client-go] upgle opened a new pull request #129: Add updated field on Action struct Message-ID: <156948644576.2751.4525917660308063742.gitbox@gitbox.apache.org> Date: Thu, 26 Sep 2019 08:27:25 -0000 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit 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