diff options
Diffstat (limited to 'lib/sqlalchemy/engine/base.py')
-rw-r--r-- | lib/sqlalchemy/engine/base.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/sqlalchemy/engine/base.py b/lib/sqlalchemy/engine/base.py index 63d76efa0..79cadaea9 100644 --- a/lib/sqlalchemy/engine/base.py +++ b/lib/sqlalchemy/engine/base.py @@ -812,10 +812,7 @@ class Connection(Connectable): upon the connection, including its expiration or timeout state. For the connection pool to properly manage connections, connections should be returned to the connection pool (i.e. ``connection.close()``) whenever the - connection is not in use. If your application has a need for management - of multiple connections or is otherwise long running (this includes all - web applications, threaded or not), don't hold a single connection open at - the module level. + connection is not in use. .. index:: single: thread safety; Connection |