[ZODB-Dev] bsddb3 mass creation problem.
Michel Pelletier
michel@digicool.com
Thu, 17 May 2001 13:50:59 -0700 (PDT)
Here it is:
*** Connection.py.~1.51~ Wed May 16 17:40:45 2001
--- Connection.py Wed May 16 16:47:38 2001
***************
*** 630,635 ****
--- 630,637 ----
assert oid is not None
serial = store_return
obj = self._cache.get(oid, None)
+ if obj is None:
+ return
if serial == ResolvedSerial:
obj._p_changed = None
else:
On Thu, 17 May 2001, Andrew Kuchling wrote:
> On Thu, May 17, 2001 at 05:30:13PM -0300, Christian Robottom Reis wrote:
> > obj._p_serial = serial
> >TypeError: attribute-less object (assign or del)
>
> This looks like the same bug that John D. Heintz reported, and for
> which Jeremy posted a two-line patch in the last day or two. Check
> the archives on lists.zope.org for the patch.
>
> --amk
>
>
> _______________________________________________
> For more information about ZODB, see the ZODB Wiki:
> http://www.zope.org/Wikis/ZODB/
>
> ZODB-Dev mailing list - ZODB-Dev@zope.org
> http://lists.zope.org/mailman/listinfo/zodb-dev
>