mirror of
https://github.com/go-gitea/gitea.git
synced 2026-08-08 18:35:52 +02:00
use withtx2 correctly
This commit is contained in:
@@ -157,16 +157,13 @@ func DeleteUserSSHKeypair(ctx context.Context, ownerID int64) error {
|
||||
|
||||
// RegenerateUserSSHKeypair regenerates an SSH keypair for the given owner
|
||||
func RegenerateUserSSHKeypair(ctx context.Context, ownerID int64) (*UserSSHKeypair, error) {
|
||||
var keypair *UserSSHKeypair
|
||||
err := db.WithTx2(ctx, func(ctx context.Context) error {
|
||||
return db.WithTx2(ctx, func(ctx context.Context) (*UserSSHKeypair, error) {
|
||||
_ = DeleteUserSSHKeypair(ctx, ownerID)
|
||||
|
||||
newKeypair, err := CreateUserSSHKeypair(ctx, ownerID)
|
||||
if err != nil {
|
||||
return err
|
||||
return nil, err
|
||||
}
|
||||
keypair = newKeypair
|
||||
return nil
|
||||
return newKeypair, nil
|
||||
})
|
||||
return keypair, err
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user