Skip to content

Commit

Permalink
🐛 adguard removed max test on process time (#1512)
Browse files Browse the repository at this point in the history
  • Loading branch information
SeDemal authored Oct 28, 2023
1 parent 5b3a236 commit ac3c088
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/server/sdk/adGuard/adGuard.schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const adGuardApiStatsResponseSchema = z.object({
num_replaced_safebrowsing: z.number().min(0),
num_replaced_safesearch: z.number().min(0),
num_replaced_parental: z.number().min(0),
avg_processing_time: z.number().min(0).max(1),
avg_processing_time: z.number().min(0),
});

export const adGuardApiStatusResponseSchema = z.object({
Expand Down

0 comments on commit ac3c088

Please sign in to comment.