我尝试循环运行 1000 次,当程序达到 60 秒时输入此错误
Internal Server Error
示例代码
for i in range(1000,0,-1):
wc = fun_A(funInput) #function
time.sleep(i/1000)
错误仅在达到 60 秒时出现。我尝试重复次数少于 60 秒并正常运行
我尝试循环运行 1000 次,当程序达到 60 秒时输入此错误
Internal Server Error
示例代码
for i in range(1000,0,-1):
wc = fun_A(funInput) #function
time.sleep(i/1000)
错误仅在达到 60 秒时出现。我尝试重复次数少于 60 秒并正常运行
60 秒是 IBM Cloud 上无服务器操作的限制。您可以在此处找到详细信息 - https://console.bluemix.net/docs/openwhisk/openwhisk_reference.html#openwhisk_syslimits。还有关于如何为您的操作请求更多时间的信息(向下滚动到“增加固定限制”)。