Skip to content

Commit

Permalink
fix: adapt name of system property for join handler
Browse files Browse the repository at this point in the history
...to match similar name of similar properties and environment variables.
  • Loading branch information
stempler committed Nov 21, 2024
1 parent e1f7251 commit 6334078
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public class Join extends Retype implements JoinFunction, InstanceIndexContribut
public InstanceHandler<? super TransformationEngine> getInstanceHandler() {
boolean useIndexJoinHandler = false;

String setting = System.getProperty("hale.functions.join.use_index_join_handler");
String setting = System.getProperty("hale.functions.use_index_join_handler");

if (setting == null) {
setting = System.getenv("HALE_FUNCTIONS_USE_INDEX_JOIN_HANDLER");
Expand Down

0 comments on commit 6334078

Please sign in to comment.