From 16a812fd32320f139213e752eb8210933081015b Mon Sep 17 00:00:00 2001 From: larkee <31196561+larkee@users.noreply.github.com> Date: Fri, 5 Jun 2020 14:36:32 +1200 Subject: [PATCH] docs: remove client-usage sections that no longer apply (#95) --- docs/client-usage.rst | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/docs/client-usage.rst b/docs/client-usage.rst index 801c9cb135..f3157dc0f1 100644 --- a/docs/client-usage.rst +++ b/docs/client-usage.rst @@ -16,17 +16,6 @@ and creating other objects: from google.cloud import spanner client = spanner.Client() -Long-lived Defaults -------------------- - -When creating a :class:`~google.cloud.spanner_v1.client.Client`, the -``user_agent`` and ``timeout_seconds`` arguments have sensible -defaults -(:data:`~google.cloud.spanner_v1.client.DEFAULT_USER_AGENT` and -:data:`~google.cloud.spanner_v1.client.DEFAULT_TIMEOUT_SECONDS`). -However, you may over-ride them and these will be used throughout all API -requests made with the ``client`` you create. - Configuration ------------- @@ -62,18 +51,6 @@ Configuration Be sure to use the **Project ID**, not the **Project Number**. -Warnings about Multiprocessing ------------------------------- - -.. warning:: - When using multiprocessing, the application may hang if a - :class:`Client ` instance is created - before :class:`multiprocessing.Pool` or :class:`multiprocessing.Process` - invokes :func:`os.fork`. The issue is under investigation, but may be only - happening on Macintosh and not Linux. See `GRPC/GRPC#12455 - `_ for - more information. - Next Step ---------