I am seeing some errors from this library inside of the 'kinesis-python' library, as described here: NerdWalletOSS/kinesis-python#14
This appears to be an issue with the way that Python 3.8 by default creates sub processes with "spawn" and not "fork", as referenced in that issue.
I've seen a workaround suggestion of setting:
multiprocessing.set_start_method("fork")
Is this an issue that has been seen before?
Maybe this could be done under a:
platform == "darwin":
I am seeing some errors from this library inside of the 'kinesis-python' library, as described here: NerdWalletOSS/kinesis-python#14
This appears to be an issue with the way that Python 3.8 by default creates sub processes with "spawn" and not "fork", as referenced in that issue.
I've seen a workaround suggestion of setting:
multiprocessing.set_start_method("fork")Is this an issue that has been seen before?
Maybe this could be done under a:
platform == "darwin":