Skip to content

Commit

Permalink
Value as string
Browse files Browse the repository at this point in the history
Signed-off-by: Craig Perkins <[email protected]>
  • Loading branch information
cwperks committed Dec 5, 2024
1 parent 631d8c1 commit 7d4225e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -554,11 +554,11 @@ public LocalCluster build() {
testCertificates = new TestCertificates(clusterManager.getNodes());
}
clusterName += "_" + num.incrementAndGet();
nodeOverrideSettingsBuilder.put("monitor.fs.health.enabled", true);
nodeOverrideSettingsBuilder.put("monitor.fs.health.enabled", "true");
Settings settings = nodeOverrideSettingsBuilder.build();
Map<Integer, Settings> nodeSpecificSettings = new HashMap<>();
for (Map.Entry<Integer, Settings.Builder> entry : nodeSpecificOverrideSettingsBuilder.entrySet()) {
entry.getValue().put("monitor.fs.health.enabled", true);
entry.getValue().put("monitor.fs.health.enabled", "true");
nodeSpecificSettings.put(entry.getKey(), entry.getValue().build());
}
return new LocalCluster(
Expand Down

0 comments on commit 7d4225e

Please sign in to comment.