Jackie-Jiang commented on a change in pull request #7950: URL: https://github.com/apache/pinot/pull/7950#discussion_r774215580
########## File path: pinot-integration-tests/src/test/java/org/apache/pinot/integration/tests/GrpcBrokerClusterIntegrationTest.java ########## @@ -105,7 +105,9 @@ protected void startHybridCluster() startController(properties); - startBroker(); + PinotConfiguration brokerConfig = getDefaultBrokerConfiguration(); + brokerConfig.setProperty(CommonConstants.Broker.BROKER_REQUEST_HANDLER_TYPE, "grpc"); + startBrokers(1, DEFAULT_BROKER_PORT, getZkUrl(), brokerConfig.toMap()); Review comment: ```suggestion startBrokers(1, DEFAULT_BROKER_PORT, getZkUrl(), Collections.singletonMap(CommonConstants.Broker.BROKER_REQUEST_HANDLER_TYPE, "grpc")); ``` -- 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: commits-unsubscr...@pinot.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org