Skip to content

Commit

Permalink
fix a bug that was pointed out on the forums in 2.1. 2.2 had the same…
Browse files Browse the repository at this point in the history
… issue.
  • Loading branch information
chenson42 committed Mar 9, 2011
1 parent 93f698a commit 82dcccd
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -129,7 +129,7 @@ public boolean acquireIncomingBatch(IncomingBatch batch) {
}

if (batch.isRetry()) {
if (existingBatch.getStatus() == Status.ER
if (existingBatch.getStatus() == Status.ER || existingBatch.getStatus() == Status.LD
|| !parameterService
.is(ParameterConstants.INCOMING_BATCH_SKIP_DUPLICATE_BATCHES_ENABLED)) {
okayToProcess = true;
Expand Down

0 comments on commit 82dcccd

Please sign in to comment.