Commit ecf1ef1a authored by Aurel's avatar Aurel

fix missing argument


git-svn-id: https://svn.erp5.org/repos/neo/branches/prototype3@226 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent 3b6750b0
...@@ -223,7 +223,7 @@ class VerificationEventHandler(MasterEventHandler): ...@@ -223,7 +223,7 @@ class VerificationEventHandler(MasterEventHandler):
for offset in xrange(app.num_partitions): for offset in xrange(app.num_partitions):
row_list.append((offset, app.pt.getRow(offset))) row_list.append((offset, app.pt.getRow(offset)))
if len(row_list) == 1000: if len(row_list) == 1000:
p.sendPartitionTable(app.lptid, row_list) p.sendPartitionTable(conn.getNextId(), app.lptid, row_list)
conn.addPacket(p) conn.addPacket(p)
del row_list[:] del row_list[:]
if len(row_list) != 0: if len(row_list) != 0:
......
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