fix public will not be reused as public key after deleting as deploy key (#5671)

This commit is contained in:
Lunny Xiao 2019-01-10 02:10:46 +08:00 committed by techknowlogick
parent 530c2b8ad8
commit 0b84b5ee49
1 changed files with 5 additions and 0 deletions

View File

@ -844,6 +844,11 @@ func DeleteDeployKey(doer *User, id int64) error {
if err = deletePublicKeys(sess, key.KeyID); err != nil {
return err
}
// after deleted the public keys, should rewrite the public keys file
if err = rewriteAllPublicKeys(sess); err != nil {
return err
}
}
return sess.Commit()