Skip to content

Commit a9b2986

Browse files
committed
feat(BRIDGE-409): increase max APPEND size.
1 parent b014b7c commit a9b2986

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

rfcparser/parser.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,8 +190,9 @@ func (p *Parser) ParseLiteral() ([]byte, error) {
190190
return nil, fmt.Errorf("invalid literal size")
191191
}
192192

193-
if literalSize >= 30*1024*1024 {
194-
return nil, fmt.Errorf("literal size exceeds maximum size of 30MB")
193+
if literalSize >= 55*1024*1024 {
194+
return nil, fmt.Errorf("literal size exceeds maximum size of 55MB")
195+
195196
}
196197

197198
if err := p.Consume(TokenTypeRCurly, "expected '}' for literal end"); err != nil {

0 commit comments

Comments
 (0)