kmozaid commented on code in PR #8255:
URL: https://github.com/apache/pinot/pull/8255#discussion_r854747628
##########
pinot-integration-test-base/src/test/java/org/apache/pinot/integration/tests/BaseClusterIntegrationTest.java:
##########
@@ -558,7 +563,8 @@ protected void waitForDocsLoaded(long timeoutMs, boolean
raiseError) {
@Override
public Boolean apply(@Nullable Void aVoid) {
try {
- return getCurrentCountStarResult() == countStarResult;
+ long currentCountStarResult = getCurrentCountStarResult();
+ return currentCountStarResult == countStarResult;
Review Comment:
yeah, I was debugging realtime cluster integration test and had to make this
change for debug point. reverted it.
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]