capistrant commented on a change in pull request #10676:
URL: https://github.com/apache/druid/pull/10676#discussion_r603516754
##########
File path:
integration-tests/src/test/java/org/apache/druid/tests/indexer/AbstractITBatchIndexTest.java
##########
@@ -280,6 +334,18 @@ private void submitTaskAndWait(
);
}
+ if (segmentAvailabilityConfirmationPair.lhs != null &&
segmentAvailabilityConfirmationPair.lhs) {
+ TaskReport reportRaw =
indexer.getTaskReport(taskID).get("ingestionStatsAndErrors");
+ IngestionStatsAndErrorsTaskReport report =
(IngestionStatsAndErrorsTaskReport) reportRaw;
+ IngestionStatsAndErrorsTaskReportData reportData =
(IngestionStatsAndErrorsTaskReportData) report.getPayload();
+ if (segmentAvailabilityConfirmationPair.rhs != null) {
+ Assert.assertEquals(
+ Boolean.valueOf(reportData.isSegmentAvailabilityConfirmed()),
+ segmentAvailabilityConfirmationPair.rhs
+ );
+ }
+ }
+
Review comment:
trying to track down exactly what retry loop you are referring to. When
I click that link my browser is just loading at the top of the page so I'm not
sure exactly where you are wanting me to look.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]