Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed a gap detection bug.
  • Loading branch information
chenson42 committed May 25, 2010
1 parent f4bbb8d commit d3ae19a
Showing 1 changed file with 4 additions and 1 deletion.
Expand Up @@ -219,7 +219,10 @@ public Long extractData(ResultSet rs) throws SQLException, DataAccessException {
} else if (isDataGapExpired(dataId)) {
log.info("RouterSkippingDataIdsGapExpired", lastDataId, dataId);
lastDataId = dataId;
}
} else {
// detected a gap!
break;
}
} else {
// detected a gap!
break;
Expand Down

0 comments on commit d3ae19a

Please sign in to comment.