Commit cf820929 authored by Jeremy Hylton's avatar Jeremy Hylton

Disable an assert fow now.

parent 6d37f216
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
############################################################################## ##############################################################################
"""Database connection support """Database connection support
$Id: Connection.py,v 1.70 2002/06/14 15:29:30 jeremy Exp $""" $Id: Connection.py,v 1.71 2002/06/14 20:25:06 jeremy Exp $"""
from cPickleCache import PickleCache, MUCH_RING_CHECKING from cPickleCache import PickleCache, MUCH_RING_CHECKING
from POSException import ConflictError, ReadConflictError from POSException import ConflictError, ReadConflictError
...@@ -487,7 +487,8 @@ class Connection(ExportImport.ExportImport): ...@@ -487,7 +487,8 @@ class Connection(ExportImport.ExportImport):
policy of one transaction manager for each thread. policy of one transaction manager for each thread.
""" """
assert object._p_jar is self assert object._p_jar is self
assert object._p_oid is not None # XXX Figure out why this assert causes test failures
# assert object._p_oid is not None
get_transaction().register(object) get_transaction().register(object)
def root(self): def root(self):
......
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