Skip to content

Instantly share code, notes, and snippets.

@ctgardner
Created February 19, 2019 04:44
Show Gist options
  • Save ctgardner/18e078b55ed2ebb391f7d17b3ecc9696 to your computer and use it in GitHub Desktop.
Save ctgardner/18e078b55ed2ebb391f7d17b3ecc9696 to your computer and use it in GitHub Desktop.
# problem
objc[21657]: +[__NSPlaceholderDate initialize] may have been in progress in another thread when fork() was called.
objc[21657]: +[__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.
# solution (https://github.com/ansible/ansible/issues/31869)
export OBJC_DISABLE_INITIALIZE_FORK_SAFETY=YES
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment