rpuch commented on code in PR #5265: URL: https://github.com/apache/ignite-3/pull/5265#discussion_r1967298233
########## modules/runner/src/testFixtures/java/org/apache/ignite/internal/testframework/TestIgnitionManager.java: ########## @@ -112,11 +112,36 @@ public class TestIgnitionManager { * @throws IgniteException If error occurs while reading node configuration. */ public static IgniteServer start(String nodeName, @Nullable String configStr, Path workDir) { + return doStart(nodeName, configStr, workDir, true); + } + + /** + * Starts an Ignite node with an optional bootstrap configuration from an input stream with HOCON configs. + * + * <p>When this method returns, the node is partially started and ready to accept the init command (that is, its + * REST endpoint is functional). + * + * @param nodeName Name of the node. Must not be {@code null}. + * @param configStr Optional node configuration. + * @param workDir Path to the working directory. + * @return Completable future that resolves into an Ignite node after all components are started and the cluster initialization is + * complete. + * @throws IgniteException If error occurs while reading node configuration. + */ + public static IgniteServer startWithProductionDefaults(String nodeName, @Nullable String configStr, Path workDir) { + return doStart(nodeName, configStr, workDir, false); + } + + private static IgniteServer doStart(String nodeName, @Nullable String configStr, Path workDir, boolean useTestDefaults) { Review Comment: I think, while there are just two possible values, a boolean is ok. If we need more values, we'll introduce an enum -- 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: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org