204 - Change Number In Use¶
API Error Code | 204 |
HTTP Status Code | HTTP 409 Conflict |
Error Text | The change number specified has already been used |
Description | The change number used to create a new review request wasn’t valid, because another review request already exists with that change number. You will only see this with repositories that support server-side changesets, such as Perforce. Usually, the correct thing to do is to instead modify the other review request. The resource information for the review request that’s associated with the change number will be returned in the review_request key. |
Examples¶
application/json¶
{
"err": {
"code": 204,
"msg": "The change number specified has already been used"
},
"review_request": {},
"stat": "fail"
}
application/xml¶
<?xml version="1.0" encoding="utf-8"?>
<rsp>
<stat>fail</stat>
<review_request>
</review_request>
<err>
<msg>The change number specified has already been used</msg>
<code>204</code>
</err>
</rsp>