214 - Bad Host Key¶
API Error Code | 214 |
HTTP Status Code | |
Error Text | The SSH key on the host does not match the stored key. |
Description | Review Board encountered an unexpected SSH key on host (typically a repository). The key found didn’t match what Review Board had previously recorded. The hostname, key (in base64) and the key we expected to find (also in base64) will be returned along with the error. |
Examples¶
application/json¶
{
"err": {
"code": 214,
"msg": "The SSH key on the host does not match the stored key.",
"type": "ssh-host-key-mismatch"
},
"expected_key": "_key in base64_",
"hostname": "svn.example.com",
"key": "_key in base64_",
"stat": "fail"
}