python-lambda-local icon indicating copy to clipboard operation
python-lambda-local copied to clipboard

One Local Lambda calling another Local Lambda

Open AbhimanyuHK opened this issue 6 years ago • 1 comments

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")

AbhimanyuHK avatar Apr 01 '19 10:04 AbhimanyuHK

Currently there is no plan to support this. PR is welcomed.

yxd-hde avatar Apr 10 '19 02:04 yxd-hde