Jump to >

This documentation covers the in-development release of Review Board. You can see the stable Review Board documentation or all previous versions.

220 - Diff Too Big

API Error Code 220
HTTP Status Code

HTTP 400 Bad Request

Error Text The specified diff file is too large.
Description

A diff was uploaded that was too large to process. The size limit may vary between servers.

The specific reason it failed is provided in reason, and the maximum diff size in bytes is provided in max_size.

Examples

application/json

{
  "err": {
    "code": 220,
    "msg": "The specified diff file is too large."
  },
  "max_size": 200000,
  "reason": "The supplied diff file is too large",
  "stat": "fail"
}