214 - Bad Host Key¶
API Error Code | 214 |
HTTP Status Code | HTTP 403 Forbidden |
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. |
Example¶
{
stat: "fail",
err: {
code: 214,
msg: "The SSH key on the host does not match the stored key"
},
hostname: "svn.example.com",
key: "<key in base64>",
expected_key: "<key in base64>"
}