This documentation covers the in-development release of Review Board. You can see the latest stable docs or all previous versions.
209 - Repository Action Not Supported¶
| API Error Code | 209 |
| HTTP Status Code | HTTP 501 Not Implemented |
| Error Text | The specified repository is not able to perform this action |
| Description | The request made on a repository’s resource can’t be performed by that type of repository. That particular action is invalid for that repository type. There is no sense in retrying this request on the same repository. |
Examples¶
application/json¶
{
"err": {
"code": 209,
"msg": "The specified repository is not able to perform this action"
},
"stat": "fail"
}
application/xml¶
<?xml version="1.0" encoding="utf-8"?>
<rsp>
<stat>fail</stat>
<err>
<msg>The specified repository is not able to perform this action</msg>
<code>209</code>
</err>
</rsp>