Skip to content

Commit 17b9426

Browse files
committed
feat(BRIDGE-409): increased literal size to match actual POST limit.
1 parent a9b2986 commit 17b9426

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

rfcparser/parser.go

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

193-
if literalSize >= 55*1024*1024 {
194-
return nil, fmt.Errorf("literal size exceeds maximum size of 55MB")
193+
if literalSize >= 70*1024*1024 {
194+
return nil, fmt.Errorf("literal size exceeds maximum size of 70MB")
195195

196196
}
197197

0 commit comments

Comments
 (0)