Renaming Actors

Hi guys,

I’ve recently renamed the module that contains some custom Actors I’ve made. Now, when I load an older model, ray tries to restore these actors from their old locations. How does Ray recommend me dealing with this? Is there some way of telling Ray/Python that my module was renamed? (package1.modules.util was renamed to package2.models.util)

Of course, the best way is to prevent this from happening at all. But that was not an option. Also, I’ve tried symlinking, which works but it has a very hacky feel.

Thanks in advance!