Jump to >

This documentation covers Review Board 2.5. You can see the latest Review Board documentation or all other 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"
}