mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-30 16:19:03 +01:00
SPIGOT-7906: Increase YAML nesting limit to 100
By: blablubbabc <lukas@wirsindwir.de>
This commit is contained in:
parent
afaa0a1d88
commit
f73b5cbdb3
1 changed files with 1 additions and 0 deletions
|
@ -61,6 +61,7 @@ public class YamlConfiguration extends FileConfiguration {
|
||||||
yamlLoaderOptions = new LoaderOptions();
|
yamlLoaderOptions = new LoaderOptions();
|
||||||
yamlLoaderOptions.setMaxAliasesForCollections(Integer.MAX_VALUE); // SPIGOT-5881: Not ideal, but was default pre SnakeYAML 1.26
|
yamlLoaderOptions.setMaxAliasesForCollections(Integer.MAX_VALUE); // SPIGOT-5881: Not ideal, but was default pre SnakeYAML 1.26
|
||||||
yamlLoaderOptions.setCodePointLimit(Integer.MAX_VALUE); // SPIGOT-7161: Not ideal, but was default pre SnakeYAML 1.32
|
yamlLoaderOptions.setCodePointLimit(Integer.MAX_VALUE); // SPIGOT-7161: Not ideal, but was default pre SnakeYAML 1.32
|
||||||
|
yamlLoaderOptions.setNestingDepthLimit(100); // SPIGOT-7906: The default limit (50) can be easily reached with nested bundles
|
||||||
|
|
||||||
constructor = new YamlConstructor(yamlLoaderOptions);
|
constructor = new YamlConstructor(yamlLoaderOptions);
|
||||||
representer = new YamlRepresenter(yamlDumperOptions);
|
representer = new YamlRepresenter(yamlDumperOptions);
|
||||||
|
|
Loading…
Reference in a new issue