We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fa4a15 commit 95346f1Copy full SHA for 95346f1
1 file changed
agent/app/service/app_utils.go
@@ -425,6 +425,8 @@ func deleteAppInstall(deleteReq request.AppInstallDelete) error {
425
switch install.App.Key {
426
case constant.AppMysql, constant.AppMariaDB, constant.AppMysqlCluster:
427
_ = mysqlRepo.Delete(ctx, mysqlRepo.WithByMysqlName(install.Name))
428
+ case constant.AppMongodb:
429
+ _ = mongodbRepo.Delete(ctx, mongodbRepo.WithByMongodbName(install.Name))
430
case constant.AppPostgresql, constant.AppPostgresqlCluster:
431
_ = postgresqlRepo.Delete(ctx, postgresqlRepo.WithByPostgresqlName(install.Name))
432
}
0 commit comments