fixed bug in instancemanager kubernetes where DeleteServer would instead try to create server
All checks were successful
Build and Push Docker Image / Build image (push) Successful in 1m43s
All checks were successful
Build and Push Docker Image / Build image (push) Successful in 1m43s
This commit is contained in:
parent
032afc810c
commit
cfab9edbca
@ -232,7 +232,7 @@ func (i *InstanceManager) DeleteServer(ctx context.Context, serverId string) err
|
||||
return err
|
||||
}
|
||||
}
|
||||
err = i.client.Create(ctx, serverManager)
|
||||
err = i.client.Delete(ctx, serverManager)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user