2019-09-13 11:37:25 UTC - Philipp Heuberger: Has anybody ever had this error when deploying to IBM Cloud Functions? ```"API creation failure: Unable to obtain API(s) from the API Gateway (status code 401): Access token is no user access token"``` https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1568374645141200?thread_ts=1568374645.141200&cid=C3TPCAQG1 ---- 2019-09-13 11:38:09 UTC - Philipp Heuberger: I did `ibmcloud login --sso` and `ibmcloud target --cf`. FYI https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1568374689141300?thread_ts=1568374645.141200&cid=C3TPCAQG1 ---- 2019-09-13 11:39:34 UTC - Philipp Heuberger: Oh and it worked before just fine. Now all of a sudden this stopped working. https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1568374774141500?thread_ts=1568374645.141200&cid=C3TPCAQG1 ---- 2019-09-13 13:02:58 UTC - Philipp Heuberger: Fixed it by deleting `.wskprops` and `.bluemix/plugins/cloud-functions/config.json` and re-logging in https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1568379778141700?thread_ts=1568374645.141200&cid=C3TPCAQG1 ---- 2019-09-13 20:39:06 UTC - Michele Sciabarra: for 5.x should be pretty easy https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1568407146142200?thread_ts=1568038646.114400&cid=C3TPCAQG1 ---- 2019-09-13 20:39:20 UTC - Michele Sciabarra: basically replace the base image https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1568407160142400?thread_ts=1568038646.114400&cid=C3TPCAQG1 ---- 2019-09-13 20:39:37 UTC - Michele Sciabarra: if there are not changes in the package format https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1568407177142600?thread_ts=1568038646.114400&cid=C3TPCAQG1 ---- 2019-09-13 20:39:55 UTC - Michele Sciabarra: if there are fix the compile script that is in python and embeds the package https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1568407195142800?thread_ts=1568038646.114400&cid=C3TPCAQG1 ---- 2019-09-13 23:29:38 UTC - Jona: Hey there, any idea why we cannot use the node package `aws-sdk` with IBM Cloud openwhisk ? Whenever I introduce `aws-sdk` to my `package.json`, and try to invoke my action, it results in : ``` { "error": "The action did not initialize and exited unexpectedly." } ``` and the logs: ``` [ "2019-09-13T23:25:10.767951Z stderr: Killed", "2019-09-13T23:25:10.768Z stderr: The action did not initialize or run as expected. Log data might be missing." ] ``` I cut down all my code to reduce it to a basic helloworld, I consistently get this error only when I put the `aws-sdk` package... any ideas ? https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1568417378147100 ----