Thanks @ScottChapman this error logs are helpful. I see that the response includes the `code` artifact `"code":"UEsDBBQACAAIAAAAAAAAAAAAAAAAAAAAAAAIAAAAaW5`
@pritidesai if the code is a 48MB zip the response will include this, are you doing a GET on the action after deplployment to verify that it got deploy correctly? You need to the query parameter `code=false` and only do `code=true` which is the default when no present when you actually trying to download the code artifact. For example ``` https://openwhisk.ng.bluemix.net/api/v1/namespaces/_/actions/foo?code=false ``` I believe the client-go library was updated to always include `code=false` [ Full content available at: https://github.com/apache/incubator-openwhisk-wskdeploy/issues/977 ] This message was relayed via gitbox.apache.org for [email protected]
