-
Notifications
You must be signed in to change notification settings - Fork 0
Fix Caching of Clients in Lambda #412
Description
Describe the bug
We had initially decided that clients (S3, auth, OpenSearch) should be cached so that they persist over lambda runs. This is not happening. Instead they get initialized twice. Once at the beginning of lambda function, and once again when they are used. Compared to the rest of the code the initilizaing of these clients is pretty quick so it may be most prudent to simply remove this faulty logic. However if it would not take too much effort there is nothing in wrong with caching elements that are consistent across runs.
Impact
Please describe the impact this bug is causing to your program or organization.
To Reproduce
Steps to reproduce the behavior:
- Go to '...'
- Click on '....'
- Scroll down to '....'
- See error
Expected behavior
A clear and concise description of what you expected to happen.
Screenshots
If applicable, add screenshots to help explain your problem.
Logs
If applicable, please attach logs to help describe your problem.
Desktop (please complete the following information):
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]
Smartphone (please complete the following information):
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]
Additional context
Add any other context about the problem here.