We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 108fc9a commit 90b6804Copy full SHA for 90b6804
server/src/main/java/org/elasticsearch/index/store/FsDirectoryFactory.java
@@ -50,10 +50,7 @@ public class FsDirectoryFactory implements IndexStorePlugin.DirectoryFactory {
50
try {
51
value = Integer.parseInt(prop); // ensure it's a valid integer
52
} catch (NumberFormatException e) {
53
- Log.warn(
54
- () -> "unable to parse system property [" + SHARED_ARENA_MAX_PERMITS_SYSPROP + "] with value [" + prop + "]",
55
- e
56
- );
+ Log.warn(() -> "unable to parse system property [" + SHARED_ARENA_MAX_PERMITS_SYSPROP + "] with value [" + prop + "]", e);
57
}
58
59
sharedArenaMaxPermits = value; // default to 1
0 commit comments