yashmayya commented on code in PR #16911:
URL: https://github.com/apache/pinot/pull/16911#discussion_r2383155256
##########
pinot-controller/src/main/java/org/apache/pinot/controller/helix/core/PinotHelixResourceManager.java:
##########
@@ -2255,7 +2195,7 @@ public void deleteTable(String tableName, TableType
tableType, @Nullable String
LOGGER.info("Deleting table {}: Removed segment metadata",
tableNameWithType);
// Remove COMMITTING segment list
- if (TableNameBuilder.REALTIME.equals(tableType)) {
+ if (TableType.REALTIME.equals(tableType)) {
Review Comment:
This one is actually a bugfix as the earlier `equals` check would never be
true due to incompatible types.
--
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]