Open
Description
Is your feature request related to a problem? Please describe.
Right now, it is basically undefined how core will work across forks. We do know it fails. For example, the client var, when copied across the fork, has Rust file descriptors copied for the gRPC stuff that fail during Rust drop when the child process's version of the var is GC'd.
Describe the solution you'd like
We need to, without leak, make sure that fork
does not fail unless you explicitly use something from across the fork, at which point it should fail. No surprise failures like on implicit Python GC failure during drop.
I don't know how yet to do this.