We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 573302a commit 24d0ad3Copy full SHA for 24d0ad3
internal/declcfg/load.go
@@ -73,7 +73,7 @@ func extractCSV(objs []string) string {
73
74
func readYAMLOrJSON(r io.Reader) (*DeclarativeConfig, error) {
75
cfg := &DeclarativeConfig{}
76
- dec := yaml.NewYAMLOrJSONDecoder(r, 16)
+ dec := yaml.NewYAMLOrJSONDecoder(r, 4096)
77
for {
78
doc := json.RawMessage{}
79
if err := dec.Decode(&doc); err != nil {
0 commit comments