-
Notifications
You must be signed in to change notification settings - Fork 11
redis-clustering support
#74
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
base: master
Are you sure you want to change the base?
Conversation
b0e3b59 to
1a12515
Compare
|
I'm guessing we'd want to add some docs re: the things discussed in the relate issue, I'll tackle that once I've got a review and know that CI is green. |
bf77d74 to
fe9aae5
Compare
fe9aae5 to
9651eb2
Compare
| if ENV['REDIS_VERSION'] | ||
| gem 'redis', "~> #{ENV['REDIS_VERSION']}" | ||
| if (redis_version = ENV.fetch('REDIS_VERSION', nil)) | ||
| gem 'redis', "~> #{redis_version}" |
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.
For some reason RuboCop was only forcing fetch in some cases below, so I just went ahead and updated all of them.
|
This is looking really nice, thanks! I haven't yet had time to take a detailed look, but I will try to get that done this week. I'm thinking we should document this as a break of backwards compatibility. The migration path looks to be automatic, but upgrading will cause circuit states to be reset. That's probably not a big issue for most users. Does that make sense to you? |
9651eb2 to
cd32bc0
Compare
Yep, that makes sense since the keys are changing. Is this (CHANGELOG entry?) something you would like me to do? Or will you be handling that? |
|
@joshuay03 Sorry it's taking so long for me to get to this. It's busy season in the education industry. Just wanted you to know I haven't forgotten.
I can handle it as part of the release. |
Closes #71.
This is a scope-cut version of buildkite#1 (it included other CI and related changes similar to #72).