diff --git a/packages/cli/src/controllers/telemetry.controller.ts b/packages/cli/src/controllers/telemetry.controller.ts index 1de3e7e2664..518630a4498 100644 --- a/packages/cli/src/controllers/telemetry.controller.ts +++ b/packages/cli/src/controllers/telemetry.controller.ts @@ -30,7 +30,10 @@ export class TelemetryController { await this.proxy(req, res, next); } - @Post('/proxy/:version/identify', { skipAuth: true, ipRateLimit: true }) + @Post('/proxy/:version/identify', { + skipAuth: true, + ipRateLimit: { limit: 100, windowMs: 60_000 }, + }) async identify(req: AuthenticatedRequest, res: Response, next: NextFunction) { await this.proxy(req, res, next); }