Skip to content

Commit

Permalink
Use underscores
Browse files Browse the repository at this point in the history
  • Loading branch information
thecoop committed Oct 4, 2024
1 parent e0932e7 commit 3472240
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public final class MustacheScriptEngine implements ScriptEngine {
public static final Setting<ByteSizeValue> MUSTACHE_RESULT_SIZE_LIMIT = new Setting<>(
"mustache.result.size.limit",
s -> "1mb",
s -> MemorySizeValue.parseBytesSizeValueOrHeapRatio(s, "mustache.result.size.limit"),
s -> MemorySizeValue.parseBytesSizeValueOrHeapRatio(s, "mustache.max_output_size_bytes"),
Setting.Property.NodeScope
);

Expand Down

0 comments on commit 3472240

Please sign in to comment.