noblepaul commented on code in PR #996: URL: https://github.com/apache/solr/pull/996#discussion_r965472808
########## solr/core/src/java/org/apache/solr/servlet/SolrDispatchFilter.java: ########## @@ -137,7 +140,15 @@ public SolrDispatchFilter() {} public void init(FilterConfig config) throws ServletException { try { coreService = CoreContainerProvider.serviceForContext(config.getServletContext()); - + boolean isCoordinator = + NodeRoles.MODE_ON.equals( + coreService + .getService() + .getCoreContainer() + .nodeRoles + .getRoleMode(NodeRoles.Role.COORDINATOR)); + solrCallFactory = + isCoordinator ? new CoordinatorHttpSolrCall.Factory() : new HttpSolrCallFactory() {}; Review Comment: a single instance of the factory is created and kept stored as an instance variable in SDF -- 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: issues-unsubscr...@solr.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org For additional commands, e-mail: issues-h...@solr.apache.org