You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@openwhisk.apache.org by OpenWhisk Team Slack <ra...@apache.org> on 2010/01/01 00:01:01 UTC

[slack-digest] [2022-04-14] #apigateway

2022-04-14 22:33:08 UTC - Areej: I am running  open whisk  on Ubuntu 20 and I test it with hello action it is working fine .. when I create  a simple action  to expose an external api : *import* requests
*#import cv2*





*def main*(parm):
  r=requests.get(*‘<http://admin:4321a@ipaddress:5984/videofile/004?attachments=true>’*)
  *print* (r) (edited)
when I invoke this action the logs output is : stderr: The action did not initialize or run as expected. Log data might be missing.
and the result : {
  “error”: “The action exceeded its time limits of 60000 milliseconds.”
}
https://openwhisk-team.slack.com/archives/C3TP33Y2U/p1649975588908429
----