[redis-py] change redis-py deprecated hmset usage to hset (#11776)

This commit is contained in:
Akash Patel
2020-11-04 06:23:02 +00:00
committed by GitHub
parent 7248d5f4ae
commit b7531fb4f5
5 changed files with 11 additions and 9 deletions
+1 -1
View File
@@ -643,7 +643,7 @@ class Node:
process_info,
]
redis_client = self.create_redis_client()
redis_client.hmset("webui", {"url": self._webui_url})
redis_client.hset("webui", mapping={"url": self._webui_url})
def start_plasma_store(self, plasma_directory, object_store_memory):
"""Start the plasma store."""