Commit 18286c36 authored by Christian Zagrodnick's avatar Christian Zagrodnick

- fixed result caching

parent 63a4da5f
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
__doc__='''Generic Database adapter''' __doc__='''Generic Database adapter'''
__version__='$Revision: 1.109 $'[11:-2] __version__='$Revision: 1.110 $'[11:-2]
import OFS.SimpleItem, Aqueduct, RDB, re import OFS.SimpleItem, Aqueduct, RDB, re
import DocumentTemplate, marshal, md5, base64, Acquisition, os import DocumentTemplate, marshal, md5, base64, Acquisition, os
...@@ -347,7 +347,7 @@ class DA( ...@@ -347,7 +347,7 @@ class DA(
pure_query = query pure_query = query
# we need to munge the incoming query key in the cache # we need to munge the incoming query key in the cache
# so that the same request to a different db is returned # so that the same request to a different db is returned
query += '\nDBConnId: %s' % self.connection_hook query = query + ('\nDBConnId: %s' % self.connection_hook, )
# Try to fetch from cache # Try to fetch from cache
if hasattr(self,'_v_cache'): cache=self._v_cache if hasattr(self,'_v_cache'): cache=self._v_cache
......
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