我敲了一个python测试,该测试旋转了一个localstack容器,并在localstack容器内设置了一个S3存储桶和一个lambda。
测试如下:
def my_test(self, setup_terraform_infra):
s3 = boto3.resource('s3')
buckets = list(s3.buckets.all())
assert len(buckets) == 1
lambda_client = boto3.client('lambda', region_name='us-east-1')
payload = json.dumps(self.load_file(TEST_INPUT_SUCCESS_MESSAGE))
list_function_resp = lambda_client.list_functions(
MasterRegion='us-east-1',
Marker='',
MaxItems=123
)
assert len(list_function_resp['Functions']) == 1
response = lambda_client.invoke(
FunctionName='function',
InvocationType='RequestResponse',
Payload=payload,
)
在上述测试中,一切正常,直到您单击invoke函数:
response = lambda_client.invoke(
FunctionName='function',
InvocationType='RequestResponse',
Payload=payload,
)
这会导致以下错误:
botocore.exceptions.ClientError: An error occurred (InternalFailure) when calling the Invoke operation (reached max retries: 4): Error executing Lambda function arn:aws:lambda:us-east-1:000000000000:function:function: You must specify a region.
botocore.exceptions.NoRegionError: You must specify a region.
如果我跳到测试创建的docker映像,则可以重现此错误:
awslocal lambda invoke --region eu-west-1 --function-name "arn:aws:lambda:us-east-1:000000000000:function:function" --payload "{}" reponse.json
错误:
>>> botocore.exceptions.NoRegionError: You must specify a region.
我尝试在docker映像中同时设置AWS_DEFAULT_REGION和DEFAULT_REGION。但是问题仍然存在。
我已经没有主意了
答案 0 :(得分:1)
我之前遇到过完全相同的问题,但错误消息令人误解,但我的问题原来是由于对Lambda使用了错误的InvocationType
。
设置正确的InvocationType
(在我的情况下,应该将其设置为Event
而不是RequestResponse
),它可以正常工作。
希望这也可以解决您的问题。