tkalkirill commented on code in PR #2168:
URL: https://github.com/apache/ignite-3/pull/2168#discussion_r1223109458


##########
modules/runner/src/integrationTest/java/org/apache/ignite/internal/Cluster.java:
##########
@@ -135,12 +135,28 @@ public void startAndInit(int nodeCount) {
      * @param initParametersConfigurator Configure {@link InitParameters} 
before initializing the cluster.
      */
     public void startAndInit(int nodeCount, Consumer<InitParametersBuilder> 
initParametersConfigurator) {
+        startAndInit(nodeCount, defaultNodeBootstrapConfigTemplate, 
initParametersConfigurator);
+    }
+
+    /**
+     * Starts the cluster with the given number of nodes and initializes it.
+     *
+     * @param nodeCount Number of nodes in the cluster.
+     * @param nodeBootstrapConfigTemplate Node bootstrap config template to be 
used for each node started
+     *     with this call.
+     * @param initParametersConfigurator Configure {@link InitParameters} 
before initializing the cluster.
+     */
+    public void startAndInit(
+            int nodeCount,
+            String nodeBootstrapConfigTemplate,

Review Comment:
   It just looks better to me when two (or more) methods/constructors have the 
same order of arguments.
   
   Up to you.



-- 
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]

Reply via email to