Commit 31cfcf69 authored by Vincent Pelletier's avatar Vincent Pelletier

Fix property name.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@13856 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 89224210
......@@ -128,7 +128,7 @@ class DeferredConnection(DABase.Connection):
self._v_connected = ''
pool_key = self.getPhysicalPath()
connection = database_connection_pool.get(pool_key)
if connection is not None and connection.connection == s:
if connection is not None and connection._connection == s:
self._v_database_connection = connection
else:
if connection is not None:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment