diff --git a/docs/source/guide/clients.rst b/docs/source/guide/clients.rst index 9a4c442391..52ce0fcc69 100644 --- a/docs/source/guide/clients.rst +++ b/docs/source/guide/clients.rst @@ -132,6 +132,12 @@ which may interact with boto3’s client. The majority of users will not need to use these interfaces, but those that do should no longer consider their clients thread-safe without careful review. +.. note:: + ``boto3.client('')`` is an alias for creating a client with a + shared default session. Invoking ``boto3.client()`` inside of a concurrent + context may result in response ordering issues or interpreter failures + from underlying SSL modules. + General Example ~~~~~~~~~~~~~~~