Skip to content

Commit

Permalink
Enable config validator by default (#422)
Browse files Browse the repository at this point in the history
  • Loading branch information
kvosper authored Jun 4, 2019
1 parent 332a631 commit 7ab8047
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ private static void validateConfiguration(StartupConfig startupConfig, YamlConfi
}

private static boolean skipServerConfigValidation() {
String validate = getProperty(VALIDATE_SERVER_CONFIG_PROPERTY, "no");
String validate = getProperty(VALIDATE_SERVER_CONFIG_PROPERTY, "yes");
return "n".equals(validate) || "no".equals(validate);
}

Expand Down

0 comments on commit 7ab8047

Please sign in to comment.