@kquick
Looks like a bug...
class Child(Actor):
def receiveMessage(self, msg, sender):
print('Im child')
class Parent(Actor):
def receiveMessage(self, msg, sender):
self.createActor(Child)
asys = ActorSystem('multiprocTCPBase')
p = asys.createActor(Parent)
asys.tell(p, ActorExitRequest())
asys.shutdown()
Environment:
Ubuntu 18.04
Python 3.6.5
Running the code above many times causes leaving processes (htop)