-
Notifications
You must be signed in to change notification settings - Fork 40
fix: Handle connection errors during read operations. #163
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
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -14,7 +14,7 @@ | |
| {test, [ | ||
| {deps, [ | ||
| {bookish_spork, "0.3.5"}, | ||
| {cowboy, "2.8.0"}, | ||
| {cowboy, "2.10.0"}, | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. First, this is only for tests. But the very old version we were using was not compiling correct in OTP 28. The latest version has dependency constraint problems with rebar3. You can use overrides to fix that, but then it isn't compatible with our tests. So updating this dependency to something newer will need to be its own work. |
||
| {meck, "0.9.2"} | ||
| ]}, | ||
| {extra_src_dirs, [{"test", [{recursive, true}]}]} | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When tests failed it would leave redis running, and then running tests again would require cleaning redis. This makes that a little more tolerable.
Note it would be better to try to do some trap exit like thing to always run a cleanup. It seems a little less than ideal to do directly in the makefile, but potentially we could move this step into a script and that would make it a bit better.