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 ----