Skip to content

Commit

Permalink
Merge pull request #2426 from atlanhq/beta-helper
Browse files Browse the repository at this point in the history
Beta helper
  • Loading branch information
nikhilbonte21 authored Oct 30, 2023
2 parents 5eb120a + 2008e09 commit 95f4361
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ private boolean shouldUpdateFieldLimitSetting() {
LOG.error("Problem while retrieving the index field limit!", e);
return false;
}
Integer fieldLimitFromConfigurationFile = configuration.getInt(TOTAL_FIELD_LIMIT);
Integer fieldLimitFromConfigurationFile = configuration.getInt(TOTAL_FIELD_LIMIT, 0);
return currentFieldLimit == null || fieldLimitFromConfigurationFile > currentFieldLimit.asInt();
}

Expand Down

0 comments on commit 95f4361

Please sign in to comment.