-
Notifications
You must be signed in to change notification settings - Fork 5.9k
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
Split hiredis from Redis and use it directly #9176
Conversation
Can one of the admins verify this patch? |
Test PASSed. |
why? |
"*.h", | ||
"adapters/*.h", |
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.
**/*.h
wildcards?
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.
That would pull in the examples/
directory which we don't want. (Unless you mean I should use exclude
?)
bazel/BUILD.hiredis
Outdated
|
||
cc_library( |
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.
comment why this is needed? (vs. directly merge it to cc_library(name = "hiredis"...
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.
Oops I thought I kept the note for this, thanks for catching!
@simon-mo We can't pull them because they're incompatible with some of the patches on our side and I haven't managed to find a way to get them working on Windows so far (whether with or without our patches). |
Why are these changes needed?
The upstream hiredis repo is separate from that of Redis, and it has been updated with various Windows patches recently.
We can't pull in the Windows patches quite yet, but this PR switches to that repo to allow us to update them independently in the future.
Checks
scripts/format.sh
to lint the changes in this PR.