Skip to content

Commit

Permalink
Fix sqlNormalizerEnabled initialization (#432)
Browse files Browse the repository at this point in the history
  • Loading branch information
trask authored May 24, 2020
1 parent dde9137 commit 2d60dc2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ private Config(final Properties properties, final Config parent) {
traceExecutors = getPropertyListValue(properties, TRACE_EXECUTORS, parent.traceExecutors);

sqlNormalizerEnabled =
getPropertyBooleanValue(properties, SQL_NORMALIZER_ENABLED, DEFAULT_SQL_NORMALIZER_ENABLED);
getPropertyBooleanValue(properties, SQL_NORMALIZER_ENABLED, parent.sqlNormalizerEnabled);

log.debug("New instance: {}", this);
}
Expand Down

0 comments on commit 2d60dc2

Please sign in to comment.