This documentation covers Review Board 1.6.
You can select a version above or
view the latest documentation.
212 - Empty Changeset
API Error Code |
212 |
HTTP Status Code |
HTTP 400 Bad Request |
Error Text |
The change number specified represents an empty changeset |
Description |
The change number provided for the request represents a server-side
changeset that doesn’t contain any files. You will only ever see this for
repositories that implement server-side changesets, such as Perforce. Add
some files to the changeset and try again. |
Examples
application/json
{
"err": {
"code": 212,
"msg": "The change number specified represents an empty changeset"
},
"stat": "fail"
}
application/xml
<?xml version="1.0" encoding="utf-8"?>
<rsp>
<stat>fail</stat>
<err>
<msg>The change number specified represents an empty changeset</msg>
<code>212</code>
</err>
</rsp>