Don't treat NameError in deserialize as network error#728
Merged
petergoldstein merged 2 commits intoJul 26, 2019
Conversation
|
Nice catch actually! 👍 |
|
👍 @michaelkl |
Collaborator
|
Nice work. Possible to add a simple test? |
Author
|
@mperham Done! |
Owner
|
@michaelkl This is great. Thanks for the contribution. Merging. |
|
@petergoldstein Hi, What about update this commit to next version 2.7.11. It will be very helpful :) |
|
@petergoldstein More attention on this issue, please. We got punked by this during an upgrade and are forced to vendor this gem to get the fix. Can we please get a fix release? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
General
The problem I have stumbled upon after upgrading Rails version of my Ruby on Rails application was
dallimarking a memcached server as failed and removing it from the list of servers for 60 seconds. In application log it looked like this:After a lot of debugging I discovered the following error in my production log:
This means
dallihas run intoNameErrorwhile deserializing object, and treated this error as memcached server error!Reproducing the error
I've made a simple code snippet to reproduce the error.
First, let's define a simple test class:
Next, instantiate and object and save it to memcache:
Things look good so far. But let's do the trick: remove
M::Cclass and try again.We got it! Unexpected exception
NameErrorled us toWARN -- : 127.0.0.1:11211 is down. And the one to blame isActiveSupport's internal call forconst_get.Redemption
The solution to this problem is simple: we should handle this kind on
NameErroras it's already done toArgumentErrorinDalli::Server#deserialize.After applying the proposed patch running the same test snippet ends up like this: