[Core] Fix a detached actor bug fix when GCS actor management is off. (#8843)

This commit is contained in:
SangBin Cho
2020-06-09 15:46:17 -07:00
committed by GitHub
parent 50f6272fcc
commit 731ed8d232
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -77,7 +77,7 @@ def _register_actor(name, actor_handle):
raise ValueError("An actor with name={} already exists".format(name))
# Add the actor to Redis if it does not already exist.
_internal_kv_put(actor_name, pickle.dumps(actor_handle))
_internal_kv_put(actor_name, pickle.dumps(actor_handle), overwrite=True)
def register_actor(name, actor_handle):