From 71a2f4c63dd749f87c205e7e5fb63971ed53d646 Mon Sep 17 00:00:00 2001 From: Edward Oakes Date: Thu, 24 Oct 2019 18:07:49 -0700 Subject: [PATCH] fix comment (#6006) --- python/ray/includes/unique_ids.pxi | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/python/ray/includes/unique_ids.pxi b/python/ray/includes/unique_ids.pxi index f2e4d29b7..f18ab5352 100644 --- a/python/ray/includes/unique_ids.pxi +++ b/python/ray/includes/unique_ids.pxi @@ -158,8 +158,10 @@ cdef class ObjectID(BaseID): # There is a strange error in rllib that causes the above to # fail. Somehow the global 'ray' variable corresponding to the # imported package is None when this gets called. Unfortunately - # this is hard to debug because . In any case, there's not much - # we can do besides ignore it (re-importing ray won't help). + # this is hard to debug because __dealloc__ is called during + # garbage collection so we can't get a good stack trace. In any + # case, there's not much we can do besides ignore it + # (re-importing ray won't help). pass cdef CObjectID native(self):