Open
Description
Hi, i am having two lambda's . One lambda calling other lambda by boto3 client.
From AWS console it is working fine. how can i test locally in this case.
Snippets :
def handler(event, context):
# Doing some process
client = boto3.client("lambda")
client.invoke(FunctionName="Lambda_2", InvocationType="Event")