-
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
Add password authentication to Redis ports #2952
Merged
+462
−115
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
5cb5af8
Implement Redis authentication
pschafhalter e6c669e
Throw exception for legacy Ray
pschafhalter 772cff0
Add test
pschafhalter fde3c16
Formatting
pschafhalter e1fe5dd
Fix bugs in CLI
pschafhalter 053ae44
Fix bugs in Raylet
pschafhalter ce24f42
Move default password to constants.h
pschafhalter 8cac24b
Use pytest.fixture
pschafhalter 386d69b
Fix bug
pschafhalter 901e8b4
Authenticate using formatted strings
pschafhalter ef62552
Add missing passwords
pschafhalter 9291512
Add test
pschafhalter 2b41641
Improve authentication of async contexts
pschafhalter 0e6609e
Disable Redis authentication for credis
pschafhalter 1be3105
Update test for credis
pschafhalter 7200454
Fix rebase artifacts
pschafhalter bc514fd
Fix formatting
pschafhalter 15edd1d
Add workaround for issue #3045
pschafhalter 9f3434a
Increase timeout for test
pschafhalter 1c079a1
Improve C++ readability
pschafhalter 56f3225
Fixes for CLI
pschafhalter 17bc360
Add security docs
pschafhalter d13edca
Address comments
pschafhalter 6944814
Address comments
pschafhalter 8e090fe
Adress comments
pschafhalter 00c045f
Use ray.get
pschafhalter f3d68e2
Fix lint
pschafhalter File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Adress comments
- Loading branch information
commit 8e090fe99a4a9795e2001185f3aad43c9cc944c2
There are no files selected for viewing
This file contains 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
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.
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.
Kind of a nit, but
task_id
should beobject_id
.Also, instead of doing
wait
followed by an assert, maybe just doray.get(object_id)
.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.
Do you mind if I keep the
ray.wait
? While testing, I ran into a case whereray.get
wouldn't fail, but block indefinitely (I think this was when I discovered the issues with the new GCS).