distribution-content MRI-3618: increase code point limit for YAML parser to 10 MiB

This fixes failing RiderPackagingTest

(cherry picked from commit 10ecdd7ff1137400f0b73829c455c7f8e085acef)

IJ-CR-192557

GitOrigin-RevId: c79571cc29cf17044771d2231fe2c30385792764
This commit is contained in:
Vladislav.Yaroshchuk
2026-02-20 00:07:13 +04:00
committed by intellij-monorepo-bot
parent edaad5131e
commit 625cdd4e28

View File

@@ -13,6 +13,7 @@ private val yaml = Yaml(
configuration = YamlConfiguration(
encodeDefaults = false,
singleLineStringStyle = SingleLineStringStyle.PlainExceptAmbiguous,
codePointLimit = 10 * 1024 * 1024, // 10 MiB, slightly lower than the max file size in our Git repo (12 MiB)
),
)