fix(core): Raise rate limit on telemetry /identify endpoint (#31509)

Co-authored-by: n8n-cat-bot[bot] <n8n-cat-bot[bot]@users.noreply.github.com>
Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
n8n-cat-bot[bot] 2026-06-02 07:57:14 +00:00 committed by GitHub
parent 39cb53609e
commit e8cbcf0b08
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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);
}