d241
d241
Thank you @microwavekonijn. This worked for me (using Laravel 5.5). I lost way too much time finding this. How could it not be in the docs?!
In my case, the issue was caused by: - `slim_hander: true` - conservative memory and timeout settings Solution: Increase `memory_size` and/or `timeout_seconds`. These are the steps I took: - Created...
I encountered a similar issue on Macbook M2 (arm64). Description of issue: - sam v1.98.0 - Trying to build docker with the python11 lambda image (public.ecr.aws/lambda/python:3.11) - `sam build` also...
I found I can work around this by providing the username when instantiating the class, i.e. `u = Cognito(USER_POOL_ID, CLIENT_ID, client_secret=CLIENT_SECRET, username=my_username)`