Skip to content

Commit

Permalink
fix: Allow disabling Scalable Push Query ALOS to be set via config (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
AlanConfluent committed Dec 21, 2021
1 parent 9d6a61b commit 7ac36e0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,6 @@ public boolean alosEnabled() {
if (configOverrides.containsKey(KsqlConfig.KSQL_QUERY_PUSH_V2_ALOS_ENABLED)) {
return (Boolean) configOverrides.get(KsqlConfig.KSQL_QUERY_PUSH_V2_ALOS_ENABLED);
}
return KsqlConfig.KSQL_QUERY_PUSH_V2_ALOS_ENABLED_DEFAULT;
return ksqlConfig.getBoolean(KsqlConfig.KSQL_QUERY_PUSH_V2_ALOS_ENABLED);
}
}

0 comments on commit 7ac36e0

Please sign in to comment.