Merge pull request #4543 from linkthai/fix/mongo-replicaSets-false-after-update

FIX: replicaSets default to false after updating mongo due to default
This commit is contained in:
Narciso E. Núñez Arias 2026-08-12 12:49:42 -04:00 committed by GitHub
commit 2bda2ccc04
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -202,6 +202,7 @@ export const apiUpdateMongo = createSchema
.extend({
mongoId: z.string().min(1),
dockerImage: z.string().optional(),
replicaSets: z.boolean().optional(),
})
.omit({ serverId: true });