We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b014b7c commit a9b2986Copy full SHA for a9b2986
1 file changed
rfcparser/parser.go
@@ -190,8 +190,9 @@ func (p *Parser) ParseLiteral() ([]byte, error) {
190
return nil, fmt.Errorf("invalid literal size")
191
}
192
193
- if literalSize >= 30*1024*1024 {
194
- return nil, fmt.Errorf("literal size exceeds maximum size of 30MB")
+ if literalSize >= 55*1024*1024 {
+ return nil, fmt.Errorf("literal size exceeds maximum size of 55MB")
195
+
196
197
198
if err := p.Consume(TokenTypeRCurly, "expected '}' for literal end"); err != nil {
0 commit comments