soumitra-st commented on issue #12677: URL: https://github.com/apache/pinot/issues/12677#issuecomment-2008230999
https://github.com/apache/pinot/blob/436968e080e89cdf4e08ab064e47cc70b1eb6491/pinot-controller/src/main/resources/app/interfaces/types.d.ts#L286 file has: ``` export const enum InstanceType { BROKER = "broker", CONTROLLER = "controller", MINION = "minion", SERVER = "server" } ``` but, https://github.com/apache/pinot/blob/fb043dab7d5fef3ef726896d2f53e45a2fd69f22/pinot-spi/src/main/java/org/apache/pinot/spi/config/instance/InstanceType.java#L22 has: ``` public enum InstanceType { CONTROLLER, BROKER, SERVER, MINION } ``` -- 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]
