-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UnrecognizedClientException #212
Comments
this just started happening as of 29 June; without any code changes. I go back to a working build, click "re-run jobs" and it fails w the above error. So I think it's something to do with github actions. Anyways opening a thread here to see if anyone has come up w a workaround |
My team just suffered the same issue. One of my teammates realized that when initializing dynamodb-local, we were downloading the latest version from AWS repo. We now have pinned to the latest working version, dynamodb_local_2023-06-09.tar.gz, and the issue is solved. |
could you expand? how did you get it to work? can you share the code sample of your workaround? |
@skilbjo
|
great! thanks for that. and just to clarify, here's where it goes:
i will leave the issue open in case the maintainer wants to address, but ^^^ is a valid workaround atm |
Same issue here. What worked for us was "installing" an older version of dynamodb-local before running the unit test.
You can add checks not to run the above commands everytime you run the test. |
For anyone who is facing this issue, this is the fix which resolved the issues for me. Add below logic to your
Solution:
|
Have been using
@shelf/jest-dynamodb
for 2 yrs and just started getting this error in github actions (not locally)package.json
test/file.test.ts
src/file.ts
github actions:
The text was updated successfully, but these errors were encountered: