From 0a75d8f0b39be7a7d7b53ff9cc57b6720b273261 Mon Sep 17 00:00:00 2001 From: Tianzi Cai Date: Tue, 15 Dec 2020 17:26:30 -0800 Subject: [PATCH] docs: remove multiprocessing note --- docs/index.rst | 2 -- docs/multiprocessing.rst | 7 ------- 2 files changed, 9 deletions(-) delete mode 100644 docs/multiprocessing.rst diff --git a/docs/index.rst b/docs/index.rst index 13e774e7..952a2f5e 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -1,7 +1,5 @@ .. include:: README.rst -.. include:: multiprocessing.rst - API Reference ------------- .. toctree:: diff --git a/docs/multiprocessing.rst b/docs/multiprocessing.rst deleted file mode 100644 index 1cb29d4c..00000000 --- a/docs/multiprocessing.rst +++ /dev/null @@ -1,7 +0,0 @@ -.. note:: - - Because this client uses :mod:`grpcio` library, it is safe to - share instances across threads. In multiprocessing scenarios, the best - practice is to create client instances *after* the invocation of - :func:`os.fork` by :class:`multiprocessing.Pool` or - :class:`multiprocessing.Process`.