-
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
Fix incompatibility with most recent version of Redis. #3379
Conversation
@@ -713,7 +713,7 @@ def run_function_on_all_workers(self, function, | |||
"driver_id": self.task_driver_id.id(), | |||
"function_id": function_to_run_id, | |||
"function": pickled_function, | |||
"run_on_other_drivers": run_on_other_drivers | |||
"run_on_other_drivers": str(run_on_other_drivers) |
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.
run_on_other_drivers
is a bool
@@ -2027,7 +2022,6 @@ def connect(info, | |||
worker_dict = { | |||
"node_ip_address": worker.node_ip_address, | |||
"plasma_store_socket": info["store_socket_name"], | |||
"local_scheduler_socket": info["local_scheduler_socket_name"] |
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.
these values were None
and weren't being used anyway
Test FAILed. |
Test FAILed. |
Test FAILed. |
9456008
to
1985863
Compare
Test FAILed. |
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.
Looks great! Tested locally on 2.10.6 and it works, thanks!
This fixes #3334. Basically, anywhere that we're passing a boolean or
None
into a Redis command, we need to first convert it to a string.