-
-
Notifications
You must be signed in to change notification settings - Fork 407
Known Bugs & Fixes
byt3bl33d3r edited this page Aug 13, 2019
·
2 revisions
objc[7505]: +[__NSPlaceholderDate initialize] may have been in progress in another thread when fork() was called.
objc[7505]: +[__NSPlaceholderDate initialize] may have been in progress in another thread when fork() was called. We cannot safely call it or ignore it in the fork() child process. Crashing instead. Set a breakpoint on objc_initializeAfterForkError to debug.
This is apparently due to some new security changes made in High Sierra that are breaking lots of Python things that use fork()
.
If you get this error run:
export OBJC_DISABLE_INITIALIZE_FORK_SAFETY=YES
before you start teamserver.py
and it should work as normal. This is apparently a Python bug that needs to be addressed.
- To Do
- To Do
- To Do