Commit 2107a5ff authored by Yoshinori Okuji's avatar Yoshinori Okuji

Fix reverse flags.

git-svn-id: https://svn.erp5.org/repos/neo/branches/prototype3@215 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent 3450f492
......@@ -105,7 +105,7 @@ class ReplicationEventHandler(StorageEventHandler):
return
# Directly store the transaction.
app.dm.storeTransaction(tid, (), (oid_list, user, desc, ext), True)
app.dm.storeTransaction(tid, (), (oid_list, user, desc, ext), False)
def handleAnswerOIDs(self, conn, packet, oid_list):
app = self.app
......@@ -183,7 +183,7 @@ class ReplicationEventHandler(StorageEventHandler):
# Directly store the transaction.
obj = (oid, compression, checksum, data)
app.dm.storeTransaction(serial_start, [obj], None, True)
app.dm.storeTransaction(serial_start, [obj], None, False)
del obj
del data
......
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