Skip to content

Commit fd4f649

Browse files
committed
KARAF-1640: Setting default to false in code
git-svn-id: https://svn.apache.org/repos/asf/karaf/trunk@1372368 13f79535-47bb-0310-9956-ffa450edef68
1 parent bfa3974 commit fd4f649

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main/src/main/java/org/apache/karaf/main/ConfigProperties.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ public ConfigProperties() throws Exception {
211211
this.portFile = props.getProperty(KARAF_SHUTDOWN_PORT_FILE);
212212
this.shutdownCommand = props.getProperty(KARAF_SHUTDOWN_COMMAND, DEFAULT_SHUTDOWN_COMMAND);
213213
this.startupMessage = props.getProperty(KARAF_STARTUP_MESSAGE, "Apache Karaf starting up. Press Enter to open the shell now...");
214-
this.delayConsoleStart = Boolean.parseBoolean(props.getProperty(KARAF_DELAY_CONSOLE, "true"));
214+
this.delayConsoleStart = Boolean.parseBoolean(props.getProperty(KARAF_DELAY_CONSOLE, "false"));
215215
System.setProperty(KARAF_DELAY_CONSOLE, new Boolean(this.delayConsoleStart).toString());
216216
}
217217

0 commit comments

Comments
 (0)