Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions org.knime.core/.settings/.api_filters
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,14 @@
</message_arguments>
</filter>
</resource>
<resource path="src/eclipse/org/knime/core/util/EclipseUtil.java" type="org.knime.core.util.EclipseUtil$Application">
<filter id="1176502275">
<message_arguments>
<message_argument value="5.8.2"/>
<message_argument value="WARMSTART"/>
</message_arguments>
</filter>
</resource>
<resource path="src/eclipse/org/knime/core/util/KnimeUrlType.java" type="org.knime.core.util.KnimeUrlType">
<filter comment="Introduced in bugfix version" id="1175453698">
<message_arguments>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,12 @@ public enum Application {
*/
TESTFLOW_RUNNER("org.knime.testing.NGTestflowRunner", false),

/**
* The warmstart application for pre-warming containers.
* @since 5.8.2
*/
WARMSTART("org.knime.product.KNIME_WARMSTART_APPLICATION", true),

/**
* If the application is not among the knowns ones above.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,8 @@ final class EarlyStartupState {
static final EnumSet<Application> PROFILE_AWARE_APPLICATIONS = EnumSet.of( //
Application.AP, //
Application.EXECUTOR, //
Application.TESTFLOW_RUNNER);
Application.TESTFLOW_RUNNER, //
Application.WARMSTART);

private static final IExtensionPoint EXTENSION_POINT;
static {
Expand Down