boto3 client.list_topics()没有给我错误信息

时间:2016-07-01 13:54:52

标签: amazon-web-services aws-lambda amazon-sns boto3

我在python中有一个lambda函数,可以让管理员访问。

lambda函数中的代码是

def lambda_handler(event, context):
client = boto3.client('sns')
try:
    client.list_topics()
except Exception, err:
    print Exception, err

试图达到sns主题。

但是当我保存并测试时,我只能看到以下消息:

{
"errorMessage": "2016-07-01T13:51:22.194Z e2605d0d-3f92-11e6-a117-  fb73aa4f9916 Task timed out after 4.00 seconds"
}

为什么我的打印句子没有为我打印错误信息,在这种情况下会出现什么问题

1 个答案:

答案 0 :(得分:1)

从错误消息中,看起来您的Lambda函数在API调用完成之前超时。尝试增加Lambda函数的timeout值,然后重试。