Skip to content

Commit 4d81c82

Browse files
authored
Fix typo in max multi geometries validation cluster setting (#837)
Signed-off-by: Andy Qin <qinandy@amazon.com>
1 parent 1b9d5b9 commit 4d81c82

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ See the [CONTRIBUTING guide](./CONTRIBUTING.md#Changelog) for instructions on ho
88
### Features
99
### Enhancements
1010
### Bug Fixes
11+
- Fix typo in `plugins.geospatial.geojson.max_multi_gemoetries` setting to `plugins.geospatial.geojson.max_multi_gemoetries` ([#837](https://github.com/opensearch-project/geospatial/pull/837))
1112
### Infrastructure
1213
### Documentation
1314
### Maintenance

src/main/java/org/opensearch/geospatial/settings/GeospatialSettings.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public final class GeospatialSettings {
2626

2727
// Max number of multi geometries allowed while parsing uploaded GeoJSON
2828
public static final Setting<Integer> MAX_MULTI_GEOMETRIES = Setting.intSetting(
29-
"plugins.geospatial.geojson.max_multi_gemoetries",
29+
"plugins.geospatial.geojson.max_multi_geometries",
3030
100,
3131
Setting.Property.NodeScope,
3232
Setting.Property.Dynamic

0 commit comments

Comments
 (0)