sys.exit()GCP云功能

时间:2020-07-25 16:04:48

标签: python google-cloud-platform google-cloud-functions

已在Python 3.7中编写了GCP Cloud Function。执行期间,sys.exit()收到“发生服务器错误...”。我需要退出该函数,并编写了以下代码。

import sys 
if str(strEnabled) == 'True':
        printOperation = "Operation: Enabling of user" 
else:
        sys.exit() #Exit From the Program

请提出建议,我在这里想念的东西。

1 个答案:

答案 0 :(得分:1)

使用return代替sys.exit

bigbountycomment

复制而来