Browse Source

crash on duplicate owner generate

Darren Ranalli 17 years ago
parent
commit
ba790dbba1
1 changed files with 2 additions and 0 deletions
  1. 2 0
      direct/src/distributed/ClientRepositoryBase.py

+ 2 - 0
direct/src/distributed/ClientRepositoryBase.py

@@ -426,6 +426,8 @@ class ClientRepositoryBase(ConnectionRepository):
         if self.doId2ownerView.has_key(doId):
             # ...it is in our dictionary.
             # Just update it.
+            self.notify.error('duplicate owner generate for %s (%s)' % (
+                doId, dclass.getName()))
             distObj = self.doId2ownerView[doId]
             assert distObj.dclass == dclass
             distObj.generate()