Skip to content

Commit

Permalink
0003675: Fix logging of servicing pull requests
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Aug 15, 2018
1 parent a465786 commit fb7218e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -165,7 +165,7 @@ private void logDataReceivedFromPush(Node targetNode, List<OutgoingBatch> batchL
int batchesCount = 0;
int dataCount = 0;
for (OutgoingBatch outgoingBatch : batchList) {
if (outgoingBatch.getStatus() == org.jumpmind.symmetric.model.OutgoingBatch.Status.OK) {
if (outgoingBatch.getStatus() == org.jumpmind.symmetric.model.OutgoingBatch.Status.LD) {
batchesCount++;
dataCount += outgoingBatch.getDataEventCount();
}
Expand Down

0 comments on commit fb7218e

Please sign in to comment.