File tree 2 files changed +2
-1
lines changed
main/java/org/elasticsearch/common/settings
test/java/org/elasticsearch/common/settings
2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -458,7 +458,7 @@ public final String getRaw(final Settings settings) {
458
458
* @return the raw string representation of the setting value
459
459
*/
460
460
String innerGetRaw (final Settings settings ) {
461
- return settings .get (getKey (), defaultValue .apply (settings ), isListSetting () );
461
+ return settings .get (getKey (), defaultValue .apply (settings ));
462
462
}
463
463
464
464
/** Logs a deprecation warning if the setting is deprecated and used. */
Original file line number Diff line number Diff line change @@ -180,6 +180,7 @@ public void testSimpleUpdate() {
180
180
}
181
181
}
182
182
183
+ @ AwaitsFix (bugUrl = "https://github.com/elastic/elasticsearch/issues/33135" )
183
184
public void testValidateStringSetting () {
184
185
Settings settings = Settings .builder ().putList ("foo.bar" , Arrays .asList ("bla-a" , "bla-b" )).build ();
185
186
Setting <String > stringSetting = Setting .simpleString ("foo.bar" , Property .NodeScope );
You can’t perform that action at this time.
0 commit comments