215 - Unverified Host Key¶
API Error Code | 215 |
HTTP Status Code | |
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.",
"type": "ssh-host-key-not-verified"
},
"hostname": "svn.example.com",
"key": "_key in base64_",
"stat": "fail"
}