serverless-local-schedule icon indicating copy to clipboard operation
serverless-local-schedule copied to clipboard

⚡️🗺️⏰ Schedule AWS CloudWatch Event based invocations in local time(with DST support!)

Results 14 serverless-local-schedule issues
Sort by recently updated
recently updated
newest added

How this could work reliably considering every year has different DST start and end? At least this is how it works for CET and NZST.

I have the following event: ```yaml service: myservice plugins: - serverless-python-requirements - serverless-local-schedule provider: name: aws runtime: python3.9 stage: dev region: us-east-1 functions: ecobiciStatus: handler: myservice events: - schedule: rate:...

Hi, when using schedule as - schedule: rate: cron(0/2 7-20 ? * * *) timezone: "Europe/Amsterdam" we are receiving schedule only for minute "0" in AWS. Part after / is...

As of serverless v3.31.0; implementation of `AWS::Scheduler::Schedule` instead of `AWS::Event::Rule` [commit](https://github.com/serverless/serverless/commit/34d922d3d8d33f6e17e697610fdef7f13003a2f3) is causing the following error on startup (`sls`) when it's used in conjunction with serverless-local-schedule plugin > Property 'functions[].events[].schedule.timezone'...