Skip to content

Commit

Permalink
fix(mu): use positiveIntSchema for config
Browse files Browse the repository at this point in the history
  • Loading branch information
VinceJuliano committed Dec 4, 2024
1 parent 354c4e5 commit 242e1ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions servers/mu/src/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ export const domainConfigSchema = z.object({
MAX_WORKERS: positiveIntSchema,
DB_URL: z.string(),
TRACE_DB_URL: z.string(),
TASK_QUEUE_MAX_RETRIES: z.number(),
TASK_QUEUE_RETRY_DELAY: z.number(),
TASK_QUEUE_MAX_RETRIES: positiveIntSchema,
TASK_QUEUE_RETRY_DELAY: positiveIntSchema,
DISABLE_TRACE: z.boolean(),
SPAWN_PUSH_ENABLED: z.boolean()
})
Expand Down

0 comments on commit 242e1ff

Please sign in to comment.