215 - Unverified Host Key¶
API Error Code | 215 |
HTTP Status Code | HTTP 403 Forbidden |
Error Text | The SSH key on the host is unverified |
Description | Review Board encountered an unverified SSH key on another host (typically a repository). The key needs to be verified before Review Board can access the host. The hostname and key (in base64) will be returned along with the error. |
Examples¶
application/json¶
{
"err": {
"code": 215,
"msg": "The SSH key on the host is unverified"
},
"hostname": "svn.example.com",
"key": "_key in base64_",
"stat": "fail"
}
application/xml¶
<?xml version="1.0" encoding="utf-8"?>
<rsp>
<stat>fail</stat>
<hostname>svn.example.com</hostname>
<err>
<msg>The SSH key on the host is unverified</msg>
<code>215</code>
</err>
<key>_key in base64_</key>
</rsp>