When using your lib I face some behavior that I do not see documented
or covered in your tests. That is why I raise this issue here.
I have a setup where workers are supposed to be restarted while internally using your interpreter.
At start the workers import a python module. Just as in your tests.
However I face issues when a workers is terminated and then recreated.
A call to await worker.terminate() causes the subsequent worker instance that does
interpreter.importSync(<myPyFilePath>) to throw NoneType takes no arguments
Hi,
thank you very much for you work!
When using your lib I face some behavior that I do not see documented or covered in your tests. That is why I raise this issue here.
I have a setup where workers are supposed to be restarted while internally using your interpreter. At start the workers import a python module. Just as in your tests.
However I face issues when a workers is terminated and then recreated. A call to
await worker.terminate()
causes the subsequent worker instance that doesinterpreter.importSync(<myPyFilePath>)
to throw NoneType takes no arguments