From 602cac84dbe6c847416d3df971eb178cb613498e Mon Sep 17 00:00:00 2001 From: DilLip Chowdary Rayapati <66238621+DilLip-Chowdary-Codes@users.noreply.github.com> Date: Mon, 14 Nov 2022 16:43:41 +0530 Subject: [PATCH 1/2] Add Note for character limit of function path in events --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 49ecb2b79..46b253e18 100644 --- a/README.md +++ b/README.md @@ -236,6 +236,8 @@ Zappa can be used to easily schedule functions to occur on regular intervals. Th These functions will be packaged and deployed along with your `app_function` and called from the handler automatically. Just list your functions and the expression to schedule them using [cron or rate syntax](http://docs.aws.amazon.com/lambda/latest/dg/tutorial-scheduled-events-schedule-expressions.html) in your *zappa_settings.json* file: +**Note:** `function` path should not exceed 64 characters. + ```javascript { "production": { From a7056f0540bd3710db04cb7b67283871cd4dd6f1 Mon Sep 17 00:00:00 2001 From: DilLip Chowdary Rayapati <66238621+DilLip-Chowdary-Codes@users.noreply.github.com> Date: Sat, 19 Nov 2022 09:51:37 +0530 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 46b253e18..3bc610562 100644 --- a/README.md +++ b/README.md @@ -236,7 +236,7 @@ Zappa can be used to easily schedule functions to occur on regular intervals. Th These functions will be packaged and deployed along with your `app_function` and called from the handler automatically. Just list your functions and the expression to schedule them using [cron or rate syntax](http://docs.aws.amazon.com/lambda/latest/dg/tutorial-scheduled-events-schedule-expressions.html) in your *zappa_settings.json* file: -**Note:** `function` path should not exceed 64 characters. +**Note:** `function` path cannot exceed 64 characters. ```javascript {