We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0134f2e commit 1449589Copy full SHA for 1449589
docs/index.rst
@@ -1,5 +1,12 @@
1
.. include:: README.rst
2
3
+.. note::
4
+
5
+ Because this client uses :mod:`grpcio` library, it is safe to
6
+ share instances across threads. In multiprocessing scenarios, the best
7
+ practice is to create client instances *after* the invocation of
8
+ :func:`os.fork` by :class:`multiprocessing.Pool` or
9
+ :class:`multiprocessing.Process`.
10
11
Using the API
12
-------------
noxfile.py
@@ -141,7 +141,7 @@ def docs(session):
141
"""Build the docs for this library."""
142
143
session.install("-e", ".")
144
- session.install("sphinx", "alabaster", "recommonmark")
+ session.install("sphinx<3.0.0", "alabaster", "recommonmark")
145
146
shutil.rmtree(os.path.join("docs", "_build"), ignore_errors=True)
147
session.run(
0 commit comments