Skip to content

Commit

Permalink
0001160: Marking of old incoming batches as OK during initial load sh…
Browse files Browse the repository at this point in the history
…ould also include the setting of the error_flag to 0
  • Loading branch information
chenson42 committed Apr 4, 2013
1 parent 4c5feb4 commit 2f7a9e5
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -327,7 +327,7 @@ public void insertReloadEvents(Node targetNode, boolean reverse) {
transaction,
targetNode,
String.format(
"update %s_incoming_batch set status='OK' where node_id='%s' and status != 'OK'",
"update %s_incoming_batch set status='OK', error_flag=0 where node_id='%s' and status != 'OK'",
tablePrefix, engine.getNodeService()
.findIdentityNodeId()), true);

Expand Down

0 comments on commit 2f7a9e5

Please sign in to comment.