From 8b0ad42ec0bdb17e8d02f403f62c20c531bffcd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Honza=20Kr=C3=A1l?= Date: Thu, 11 Jun 2015 02:44:38 +0200 Subject: [PATCH] Added docs about persistent connection and fork Fixes #237, thanks aaugustin! --- docs/index.rst | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/index.rst b/docs/index.rst index 7c7561ba..b768c3d9 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -95,6 +95,14 @@ of the relevant component and pass it in as a parameter to be used instead of the default implementation. +.. note:: + + Since we use persistent connections throughout the client it means that the + client doesn't tolerate ``fork`` very well. If your application calls for + multiple processes make sure you create a fresh client after call to + ``fork``. + + Automatic Retries ~~~~~~~~~~~~~~~~~