Skip to content

Commit

Permalink
disabling SNS for CompareToReference
Browse files Browse the repository at this point in the history
  • Loading branch information
sheldonabrown committed Nov 1, 2023
1 parent 5137ada commit 61fdd07
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,11 +108,11 @@ public void run(TransformContext context, GtfsMutableRelationalDao gtfsDao) {
unmatchedReferenceTrips.removeAll(gtfsTripIds);
summaryReport.append(depot).append(",").append(unmatchedGtfsTrips.size()).append(",").append(unmatchedReferenceTrips.size()).append("\n");
detailReport.append(depot).append(",\"").append(unmatchedGtfsTrips).append("\",\"").append(unmatchedReferenceTrips).append("\"\n");
es.publishMessage(detailTopic, truncate(detailReport.toString()));
// es.publishMessage(detailTopic, truncate(detailReport.toString()));
detailFile.write(detailReport.toString());
detailReport = new StringBuffer();
}
es.publishMessage(summaryTopic, summaryReport.toString());
// es.publishMessage(summaryTopic, summaryReport.toString());
summaryFile.write(summaryReport.toString());

summaryFile.close();
Expand Down

0 comments on commit 61fdd07

Please sign in to comment.